5

Possible Duplicate:
How can I detect the encoding/codepage of a text file
How Can I Best Guess the Encoding when the BOM (Byte Order Mark) is Missing?

I would like to know if there are some delphi libraries for the purpose of detecting the character encoding of a text file.


1 답변


3

In my comment there was a link to how-can-i-best-guess-the-encoding-when-the-bom-byte-order-mark-is-missing which may work for you if the text files have no BOM.

Look at the Charset Detector library and try it out. It will try to read the BOM and if it's not there make a best effort guess.


  • I fixed the URL so as you wouldn't miss any eventual oppurtunity to earn Announcer, Booster, Publicist publicity badges :-) - menjaraz
  • What delphi versions are supported by the Charset Detector library? - Fabio Vitale
  • I looked at the source code, but I can't tell for sure. - LU RD

Linked


Related

Latest