vote up 7 vote down star
2

Hello,

I need a good Unicode library for C++. I need

  1. Transformations in Unicode sensitive way. For example sort all strings in case insensitive way and get their first characters for index. Convert to upper and to lower various Unicode strings. Split text in reasonable position -- words that would work for Chinese and Japanese as well.
  2. Formatting numbers, dates in locale sensitive way (should be thread safe).
  3. Transparent support of utf8 (primary internal representation).

As far as I know the best library is ICU. However, I can't find normal developer friendly API documentation with examples. Also as far as I see, it is not too friendly with modern C++ design, work with STL and so on. Like this

std::string msg;
unistring umsg.from_utf8(msg);
unistring::word_iterator wi;
for(wi=umsg.words().begin(),n=0;wi!=usmg.words().wi_end(),n<10;++wi,++n) 
  ;
msg=umsg.substr(umsg.words().begin(),wi).to_utf8();
cout<<_("Five 10 words are ")<<msg;

Does anybody know good STL friendly ICU wrapper released under Open Source license preferred permissive like MIT or Boost, but others LGPLv2 compatible are ok as well.

Is there another high quality library similar to ICU?

Platform: UNIX/POSIX, Windows support is not required.

Thanks, Artyom

Edit: Unfortunatly I wasn't logged in so I can't make asnver accepted... I had attached the ansver by myself.

flag
Ooh, +1 for this question. It's baffling imo that a big library like ICU completely fails to follow common C++ idioms. – jalf Feb 4 at 13:50

3 Answers

vote up 1 vote down

Does this fit the bill?

http://www.codeproject.com/KB/string/utf8cpp.aspx

link|flag
It seems that provides only a small subset of what is required. It simply allows handling UTF-8 String, but doesn't support toLower/toUpper/formatting numbers/... – Joachim Sauer Feb 4 at 13:51
True - it is only for handling utf-8 strings, but it can easily be coupled with Boost String Algorithms. Of course, even then it does not replace ICU. – Nemanja Trifunovic Feb 4 at 20:52
vote up 1 vote down

This question was asked quite a long time before by myself. There was no such library.

So I had written C++ friendly Boost.Locale library that wraps ICU.

link|flag
This is awesome. Did you make a Boost submission? – Pavel Minaev Nov 9 at 18:48
I've started an inital preliminary process - before the official submission. Follow the boost mailing lists – Artyom Nov 9 at 19:24
vote up 0 vote down

The wxWidgets GUI toolkit has some rather nice string classes and unicode support. You don't need to build/use GUI classes if you don't want to. See here for details.

link|flag

Your Answer

Get an OpenID
or

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