i am trying to do my own version of wc (unix filter), but i have problem with non-ASCII characters. I did a HEX dump of a text file and found out that these characters occupy more than one byte, so they won't fit to char. Is there any way how i can read this characters from file and handle them like single character (so i can count characters in file) in C? I've been googling a little bit and found some wchar_t type, but there was not any simple example how to use it with files.
|
Well met. There weren't any simple examples because, unfortunately, proper character set support isn't simple. Aside: In an ideal world, everybody would use UTF-8 (a Unicode encoding that is memory-efficient, robust, and backward-compatible with ASCII), the standard C library would include UTF-8 encoding-decoding support, and the answer to this question (and dealing with text in general) would be simple and straightforward. The answer to the question "What is the best unicode library for C?" is to use the ICU library. You may want to look at ustdio.h, as it has a Also, if you can spare a few minutes for some light reading, you may want to read The Absolute Minimum Every Software Developer Absolutely, Positively Must Know about Unicode and Character Sets (No Excuses!) from Joel On Software. I, personally, have never used ICU, but I probably will from now on :-) |
||||
|
|
|
Go have a look at ICU. That library is what you need to deal with all the issues. |
|||
|
|
|
If you want to write a standard C version of the
This will cause the wide character functions to use the appropriate character set defined by the environment - eg. on Unix-like systems, the You can then use the wide-character versions of all the standard functions. For example, if you have code like this:
...you would convert it to the wide character version by changing
|
|||||
|
|
Most of the answers so far have merit, but which you use depends on the semantics you want:
Hope this helps. |
|||
|
|
|
Are you sure you really need the number of characters?
(11 = 5 two-byte characters + 1 byte for '\n') However, if you really do want to count characters rather than bytes, and can assume that your text files are encoded in UTF-8, then the easiest approach is to count all bytes that are not trail bytes (i.e., in the range 0x80 to 0xBF). If you can't assume UTF-8 but can assume that any non-UTF-8 files are in a single-byte encoding, then perform a UTF-8 validation check on the data. If it passes, return the number of UTF-8 lead bytes. If if fails, return the number of total bytes. (Note that the above approach is specific to |
|||||
|