vote up 6 vote down star
7

Hi,

I am aware that there are been various questions about utf-8, mainly about libraries to manipulate utf-8 'string' like objects.

However, I am working on an 'internationalized' project (a website, of which I code a c++ backend... don't ask) where even if we deal with utf-8 we don't acutally need such libraries. Most of the times the plain std::string methods or STL algorithms are very sufficient to our needs, and indeed this is the goal of using utf-8 in the first place.

So, what I am looking for here is a capitalization of the "Quick & Dirty" tricks that you know of related to utf-8 stored as std::string (no const char*, I don't care about c-style code really, I've got better things to do than constantly worrying about my buffer size).

For example, here is a "Quick & Dirty" trick to obtain the number of characters (which is useful to know if it will fit in your display box):

#include <string>
#include <algorithm>

// Let's remember than in utf-8 encoding, a character may be
// 1 byte: '0.......'
// 2 bytes: '110.....' '10......'
// 3 bytes: '1110....' '10......' '10......'
// 4 bytes: '11110...' '10......' '10......' '10......'
// Therefore '10......' is not the beginning of a character ;)

const unsigned char mask = 0xC0;
const unsigned char notUtf8Begin = 0x80;

struct Utf8Begin
{
  bool operator(char c) const { return (c & mask) != notUtf8Begin; }
};

// Let's count
size_t countUtf8Characters(const std::string& s)
{
  return std::count_if(s.begin(), s.end(), Utf8Begin());
}

In fact I have yet to encounter a usecase when I would need anything else than the number of characters and that std::string or the STL algorithms don't offer for free since:

  • sorting works as expected
  • no part of a word can be confused as a word or part of another word

I would like to know if you have other comparable tricks, both for counting and for other simple tasks.
I repeat, I know about ICU and Utf8-CPP, but I am not interested in them since I don't need a full-fledged treatment (and in fact I have never needed more than the count of characters).
I also repeat that I am not interested in treating char*'s, they are old-fashioned.

flag

4  
So combining diacritics doesn't matter for you? That's sad. They might be characters by your count but they don't take up more space. Any combining character, actually. Or zero-width spaces. And sorting works as expected? What do you expect? How would any locale-specific sort know about collation when you deliberately won't use Unicode (except as some sort of byte array). – Johannes Rössel Sep 30 at 18:02
See my edit, my application is a backend for a website, therefore the locale is in the hand of the browser. We never encountered yet the problem of the combining characters, I have heard of them but never seen them, in which languages do you encounter them? – Matthieu M. Sep 30 at 18:14
Couple of use cases that do not work for non English text: sorting, case folding, matching (for example german ß and ss). – Marko Teiste Sep 30 at 18:26
sorting: I suppose it depends on the order you ultimately want. Sorting works in that the characters are ordered by their Unicode codepoints, though this may be a counterintuitive order for the final user. case folding: I am not concerned, but I suppose it could be annoyous matching: there is even worse in fact, for compatibility with an old-system we were required to match 'à' with 'A' since everything in this system is encoded in EBCDIC... but I think it's beyond the point of simply manipulating utf-8 there. – Matthieu M. Sep 30 at 18:39
4  
So what you're saying that as long as you don't expect your unicode text to behave as unicode, then it works as expected if you dont treat it as unicode? My, that's a surprise. But I weep for your non-English users. – jalf Sep 30 at 21:33
show 2 more comments

2 Answers

vote up 4 vote down check

Well this dirty trick will not work. First, what is the value of mask after this:

   const unsigned char mask = 0x11000000;
   const unsigned char notUtf8Begin = 0x10000000;

Perhaps you are mixing hex representation with binary.

Second, as you correctly say in utf-8 encoding, a character may be several bytes long. std::count_if will iterate through all bytes in a UTF8 sequence. But what you actually need is to look at leading byte for every character and skip the rest until the next character comes.

It will not be hard to implement a single cycle which does the calculation and jumping forward using the simple mask table for leading bytes.

At the end you get the same O(n) for checking the characters and it will work with every UTF8 string.

link|flag
Yep, got my masks mixed up, sorry. However the count_if is still correct apart from the combining diacritics problem. – Matthieu M. Oct 2 at 12:23
I was working on a utf8 string class where ++ would walk over wide code points correctly and gave up on the array of offsets for jumping from byte to byte. It works great going forward but for -- it provides no benefit. The pedantic code is easier to maintain. – jmucchiello Oct 8 at 19:34
vote up 0 vote down

Sorting UTF_8 as binary will not sort in 'Unicode' order. BOCU-1 would. As was said, your "as expected" is a pretty low bar for non-English content.

link|flag

Your Answer

Get an OpenID
or

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