![]() |
is the Value Unicode or Ansi
Hi ,
How to detect if a File or a folder is a Unicode or Ansi with/out reading the BOM . somthing like this : Function IsUnicode(Value:String):Boolean; Thanks |
Re: is the Value Unicode or Ansi
Ohne Lesen des Dateiheaders wird es nicht gehen
|
Re: is the Value Unicode or Ansi
Zitat:
|
Re: is the Value Unicode or Ansi
Read the first 3 Bytes of the file for the
![]() |
Re: is the Value Unicode or Ansi
Zitat:
Could you give me an example for that . |
Re: is the Value Unicode or Ansi
From JclUnicode.pas (JCL)
Delphi-Quellcode:
const
BOM_LSB_FIRST = WideChar($FEFF); BOM_MSB_FIRST = WideChar($FFFE); var BytesRead: Integer; Order: WideChar; begin ... BytesRead := Stream.Read(Order, 2); if (Order = BOM_LSB_FIRST) or (Order = BOM_MSB_FIRST) then ... end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:41 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz