Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As I understand, a UTF-8 string is a null-terminated string, with variable char length (1-4 bytes). It can be represented as char (is that right?). I need to get its char count to align a textual table for my program. I want to do this with some standard functions, if possible — how can I do this?

Thanks.

share|improve this question
> UTF-8 string is a null-terminated string It depends whether you allow or expect U+0000 code point inside. – adobriyan Feb 25 '11 at 13:05
@adobriyan – U+0000 is the null character, so it terminates a null-terminated Unicode string, which in UTF-8 happens to also be a null-terminated char string – right? :) – aaz Feb 25 '11 at 13:15
U+0000 by definition terminates "null-terminated Unicode string". :-) But, but. If you look at strings C way, U+0000 can never appear in it. If you look at strings as one-dimensional array with element type being character (Unicode), U+0000 doesn't terminate such string. – adobriyan Feb 25 '11 at 13:22
1  
@aaz: a unicode string should be able to represent all valid unicode character sequences, ie you can't use U+0000 as sentinel value; that's where 'modified UTF8' comes in: it encodes U+0000 as the two-byte sequence 0xC0,0x80, thus freeing the single byte 0x00 for use as string terminator... – Christoph Feb 25 '11 at 13:22

4 Answers

up vote 17 down vote accepted

From UTF-8 and Unicode FAQ for Unix/Linux:

The number of characters can be counted in C in a portable way using mbstowcs(NULL,s,0). This works for UTF-8 like for any other supported encoding, as long as the appropriate locale has been selected. A hard-wired technique to count the number of characters in a UTF-8 string is to count all bytes except those in the range 0x80 – 0xBF, because these are just continuation bytes and not characters of their own. However, the need to count characters arises surprisingly rarely in applications.

share|improve this answer
Ah, that's a bit more lightweight than the ICU libraries! +1 – Nick Feb 25 '11 at 12:58
7  
keep in mind that counting codepoints will give the wrong answer if combining characters are involved; even normalizint the input won't help as there are graphemes which do not map to single codepoints... – Christoph Feb 25 '11 at 13:16

You may or may not have a UTF-8 compatible strlen(3) function available. However, there are some simple C functions readily available that do the job quickly.

The efficient C solutions examine the start of the character to skip continuation bytes. The simple code (referenced from the link above) is

int my_strlen_utf8_c(char *s) {
   int i = 0, j = 0;
   while (s[i]) {
     if ((s[i] & 0xc0) != 0x80) j++;
     i++;
   }
   return j;
}

The faster version uses the same technique, but prefetches data and does multi-byte compares, resulting is a substantial speedup. The code is longer and more complex, however.

share|improve this answer
3  
strlen(3) counts bytes. – ninjalj Mar 5 '11 at 14:53

If you are able to use 3rd party libraries, have a look at the ICU library from IBM:

http://site.icu-project.org/

share|improve this answer

You can also use glib which makes your live much easier when dealing with UTF-8. glib reference docs

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.