Tagged Questions

ICU is the International Components for Unicode, a set of open source C/C++ and Java libraries. The main ICU website is http://icu-project.org

learn more… | top users | synonyms

14
votes
11answers
406 views

Implementing internationalization (language strings) in a PHP application

I want to build a CMS that can handle fetching locale strings to support internationalization. I plan on storing the strings in a database, and then placing a key/value cache like memcache in between ...
14
votes
3answers
2k views

Looking for a good tutorial for ICU

I was looking recently for a toolkit/library with good unicode support. I had checked ICU, Qt3, Qt4 and Glib. Unfortunalty all of them with exception of ICU had some missing features or had ...
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 ...
9
votes
2answers
629 views

Cross-platform iteration of Unicode string (counting Graphemes using ICU)

I want to iterate each character of a Unicode string, treating each surrogate pair and combining character sequence as a single unit (one grapheme). Example The text "नमस्ते" is comprised of the ...
7
votes
1answer
357 views

Why does ICU's Locale::getDefault() return “root”?

Using the ICU library with C++ I'm doing: char const *lang = Locale::getDefault().getLanguage(); If I write a small test program and run it on my Mac system, I get en for lang. However, inside a ...
6
votes
3answers
1k views

C++ UTF-8 output with ICU

I'm struggling to get started with the C++ ICU library. I have tried to get the simplest example to work, but even that has failed. I would just like to output a UTF-8 string and then go from there. ...
5
votes
4answers
752 views

How to parse kanji numeric characters using ICU?

I'm writing a function using ICU to parse an Unicode string which consists of kanji numeric character(s) and want to return the integer value of the string. "五" => 5 "三十一" => 31 "五千九百七十二" => 5972 ...
4
votes
1answer
60 views

Producing lists in Intl/ICU with PHP

I'm using PHP 5.3's Intl extension for formatting strings on my website. However, I have happened upon a string that requires a list of items. The list given to the website can be any number of items, ...
4
votes
2answers
150 views

Questions while updating some scanner code to use ICU

I am working on a rudimentary hand-coded lexical scanner and wish to support UTF-8 input (it's not 1970 anymore!). Input characters are read from stdin or a file one at a time and pushed into a buffer ...
4
votes
2answers
240 views

What are the Pros and Cons of ICU?

My team is tasked with implementing Unicode in our software, which is well over a million lines of code. We support an MFC Client and a Server on Windows, AIX or Solaris with an Oracle or SQL Server ...
3
votes
1answer
78 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 ...
3
votes
2answers
562 views

Looking for simple practical C++ examples of how to use ICU

I am looking for simple practical C++ examples on how to use ICU. The ICU home page is not helpful in this regard. I am not interested on what and why Unicode. The few demos are not self contained ...
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 ...
3
votes
1answer
86 views

ICU regex quoting

I am wondering if there is a way to quote a string in the ICU (c++) library. There exists "\Q" + string + "\E" but I am having generated input come in as the string provided. There does not seem to be ...
3
votes
2answers
66 views

Can you get access to the NumberFormatter used by ICU MessageFormat

This may be a niche question but I'm working with ICU to format currency strings. I've bumped into a situation that I don't quite understand. When using the MesssageFormat class, is it possible to ...
3
votes
2answers
1k views

iPhone app rejection for using ICU (Unicode extensions)

I received the following mail form Apple, considering my application: *Thank you for submitting your update to Νομοθεσία to the App Store. During our review of your application we found it is ...
2
votes
3answers
446 views

How to build ICU so I can use it in an iPhone app?

How do I configure and build ICU so I can link it to my iPhone app? I'm maintaining an iPhone app that uses a SQLite database. Now I have to compile with ICU support enabled (SQLITE_ENABLE_ICU). I've ...
2
votes
1answer
126 views

Is ICU a private framework on iOS?

Is ICU considered to be a private framework in Apple terms? It's not very clear to me whether the header files in $SDK/usr/include/ are private or not. I'd like to use functions like u_strcasecmp ...
2
votes
1answer
137 views

How do I patch libxml2 so it will compile with ICU support when using a prefix?

I'm trying to fix a bug in libxml2. I cannot get it to compile with --with-icu when using --prefix=/Server/software. I have submitted a bug report here, but I need to get it to compile for resolving a ...
2
votes
1answer
74 views

Using text-icu library in Haskell on Mac OS

I am trying to use the text-icu library as a dependency in a cabal package on Mac OS. I have icu installed but when I try to build my package cabal gives me this error: Missing C libraries: icui18n, ...
2
votes
2answers
369 views

How to convert Japanese half/full width characters using ICU Library

i am not too familiar with java (coming from c++/c#). I have a need for to use java in order to convert some documents from halfwidth japanese charaters to full width. would someone be kind and ...
2
votes
1answer
35 views

How to get use CalendarAstronomer from ICU

I would like to use the CalendarAstronomer class from ICU to calculate the sunset/sunrise values for a given location. The API is good and clean, but the necessary file astro.h is not installed. ...
2
votes
1answer
230 views

How do I send an ICU UnicodeString using a boost::asio:write call?

I'm currently using the ICU library to handle Unicode data, and am trying to send a UnicodeString over a socket. Currently looking at the example using a basic time server: Daytime.3 - An ...
2
votes
1answer
171 views

In ICU UnicodeString what is the difference between countChar32() and length()?

From the docs; The length is the number of UChar code units are in the UnicodeString. If you want the number of code points, please use countChar32(). and Count Unicode code points in the length ...
2
votes
1answer
411 views

How to classify japanese characters as either kanji or Katakana or Hiragana?

I am working on some application which require sorting of Japans languages. Sorting of Japanese needs to have Katakana and Kanji converted to Hiragana and then sorted according to the UTF-8 code. ...
2
votes
4answers
191 views

Fixing regex to work around ICU/RegexKitLite bug

I'm using RegexKitLite, which in turn uses ICU as its engine. Despite the documentation, a regex like /x*/ when searching against "xxxxxxxxxxx" will match empty string. It is behaving like /x*?/ ...
2
votes
1answer
137 views

what languages are supported in icu collation?

I was browsing through the ICU source code (http://icu-project.org/), and I couldn't find what languages it supports out of the box for collation. Could someone help me?
2
votes
1answer
483 views

android, moving from icu4j to icu4c

i have class used with android frameworks, it calls icu4j's Arabicshaping. now i'v merged this class with another android branch that uses icu4c ( c implementation). but build process gives me error ...
2
votes
1answer
153 views

ICU add custom character set detection

Does somebody know how ICU Charset Detector's data is built. And is it difficult to add additional languages? For example, I saw in the bug tracker that a ticket for the detection of Thai is opened ...
2
votes
3answers
379 views

ICU Unicode Normal vs Fullwidth

I am somewhat new to unicode and unicode strings. I'm trying to determine the difference between "fullwidth" symbol and a normal one. Take these two for example: Normal: ...
2
votes
2answers
1k views

Compiling the icu sqlite extension statically linked to icu

I want to compile the icu sqlite extension statically linked to icu. This is what I've tried, maybe the mistake is obvious to you. > cd icu/source > ./runConfigureIcu Linux --enable-static ...
2
votes
4answers
189 views

Does ICU handle the collation of a list of strings of varying languages?

My application may have strings comprised of different alphabets / languages in a single list. I can't seem to find any information on what the correct method for sorting these should be or any ...
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
78 views

How to get the default currency from the PHP Intl ( ICU library )

I use PHP, and like to know how I can get the default currency for a locale via the Internationalization extension (Wrapper for the ICU library)? Below is a script that explains, what and why. I ...
1
vote
1answer
25 views

I need to convert NSDate objects to UDate objects (ICU)

I need to convert NSDate objects to (ICU) UDate objects. I have read that they are similar, but I was hoping that someone might have already investigated doing this and can help me shortcut the ...
1
vote
1answer
74 views

charset conversion with icu or iconv

In my CGI library, I'm using a converter in order to convert from a IANA-registered charset to native wide unicode (UTF-16/32, depending on platform). With ICU, are all the sets and aliases listed in ...
1
vote
1answer
69 views

In ICU, is it possible to use custom plural rules instead of CLDR rules

So I want to use a different plural rule than what is in the CLDR. I'm using ICU through PHP intl extension, and say I have something like this: $msg = new MessageFormatter('ar', ...
1
vote
1answer
37 views

How to get initial English word for utf8 string of multiple languages? For comparasion purpose

How to get initial English word for utf8 string of multiple languages? For comparasion purpose. For instance, Chinese word, initial English word of "你" (means, you) is "n"; initial of "好"(means, ...
1
vote
1answer
73 views

Why doesn't libicudata.so get smaller when I remove items from the data library?

I'm trying to build a custom ICU with a minimal data set. I've tried to follow the instructions at Reducing the Size of ICU's Data: Conversion Tables, but many of the files referenced don't exist in ...
1
vote
1answer
167 views

ICU upgrade for intl extension on zend server ce macosx

Where do I install the new version of icu for intl ext on zend server ce macosx? I tried as described on readme file but it installed it in /usr/local/lib and zend server is in /usr/local/zend Zend ...
1
vote
2answers
150 views

ICU C++ Converting Encodings

As I understand it, different locales have different encodings. With ICU I'd like to convert from a UnicodeString to the current locale's encoding, and back. Specifically I'm using Boost's Filesystem ...
1
vote
0answers
86 views

ICU UnicodeString to Locale Encoding

As I understand it, Boost.Filesystem uses the native locale encoding, and I use ICU's UnicodeString instead of std::string as it works for Unicode. However, I want to convert my UnicodeString to some ...
1
vote
3answers
246 views

Unicode and Android NDK

Is there any way to use UTF-8/16 strings in the NDK without including a multi-megabyte library such as ICU? Is ICU built in to Android?
1
vote
1answer
33 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: ...
1
vote
1answer
143 views

How to get started with ICU in C

I need to handle unicode strings in C. I have heard that ICU is the appropriate set of libraries to use but I am not having any luck getting started. So my question: Can anyone provide a link to a ...
1
vote
2answers
125 views

ICU Byte Order Mark (BOM)

I am using ICU's ustdio functions to write a UnicodeString object to a file in a range of encodings, however it doesn't appear to prepend the BOM. My Code: void write_file(const char* filename, ...
1
vote
1answer
231 views

Formatting number to currency with ICU for use in Google Column Chart

I'm using Google Charts in order to make a nice columns chart, its actually a pretty easy task but I got stuck at the following point: I gotta format the values showed at the vertical axis this way ...
1
vote
1answer
70 views

Where is spellout rule(RuleBasedNumberFormat) of ICU library?

I use ICU to spell out number to string like : "one hundred and thirty-four" // 134 using en_US spellout the out of box spellout rule for my locale(vi_VN) is seem wrong 15 become "mười năm" instead of ...
1
vote
1answer
148 views

Keep getting error LNK2019: unresolved external symbol

The IDE I use is Visual Studio 2010 Professional, and the library I use is ICU4C 4.8.1 for Win32 for MSVC10. I have rebuilt all the source codes according to the manual for both Debug and Release, ...

1 2 3