Tagged Questions

11
votes
3answers
2k views

Is there an STL and UTF-8 friendly C++ Wrapper for ICU, or other powerful Unicode library

I need a good Unicode library for C++. I need: Transformations in a Unicode sensitive way. For example sort all strings in a case insensitive way and get their first characters for index. Convert ...
10
votes
1answer
411 views

Where can I find a specific set of collation rules for equality comparison of strings?

We all know that using String's equals() method for equality comparison will fail miserably. Instead, one should use Collator, like this: // we need to detect User Interface locale somehow Locale ...
3
votes
1answer
142 views

How to use Locale::acceptFromHttp without a filter list?

locale_accept_from_http is a basic wrapper around ICU's API uloc_acceptLanguageFromHTTP but the PHP/PECL implementation seems fundamentally flawed that it uses the systems entire set of locales ...
2
votes
1answer
76 views

Are ICU resource bundles meant for message translation resources

I understand the localization part of ICU - date, time and currency formats, collation, etc. When it comes to message translation, I see people stating that ICU does not provide functionality for ...
2
votes
3answers
1k views

How can I transliterate chinese text to pinyin on iPhone?

The localization saga continues... So I'm trying to support collation of chinese text in my iPhone app, and after talking to a native chinese speaker, I think I understand how the chinese do it... ...
1
vote
1answer
32 views

ICU CurrencyFormatter pattern for 0 digits

I am trying to get the localized currency symbol using the NumberFormatter in PHP's intl extension. Since the NumberFormatter uses ICU, I am looking at this page. I have written the following code: ...
0
votes
2answers
80 views

Intl extension problems - PHP

I recently upgraded my WAMP server and I can't seem to get the Intl extension to work. I've made sure that the extension path in both ini files are correct the extension is loaded in both inis I ...
0
votes
1answer
289 views

Finding type of break in icu::BreakIterator

I'm trying to understang how to use icu::BreakIterator to find specific words. For example I have following sentence: To be or not to be? That is the question... Word instance of break iterator ...