Tagged Questions
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 ...
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 ...
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
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
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
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: ...
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
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
2answers
149 views
Transliteration on Unicode LATIN LETTERS “WITH STROKE”
Feeding the rule "NFD; [:Nonspacing Mark:] Remove; NFC" into the ICU Transliterator demo, the character Ø (\u00d8 == LATIN CAPITAL LETTER O WITH STROKE) remains as-is (i.e. the STROKE is not ...
1
vote
1answer
168 views
Check valid string encoding with PHP's intl (ICU) features
Using the features currently available in PHP's intl wrapper for ICU, how would you go about checking for validity of a string's encoding? (e.g. check for valid UTF-8)
I know it can be done with ...
1
vote
1answer
170 views
ICU custom transliteration
I am looking to utilize the ICU library for transliteration, but I would like to provide a custom transliteration file for a set of specific custom transliterations, to be incorporated into the ICU ...
1
vote
2answers
147 views
1
vote
2answers
329 views
Convert ICU4C byte to java char
I am accessing an ICU4C function through JNI which returns a UChar * (i.e. unicode character array).... I was able to convert that to jbyteArray by equating each member of the UChar array to a local ...
1
vote
2answers
559 views
Inconsistency in Unicode with wchar_t vs. ICU in C++
While wchar_t is inconsistent in case of support on different compilers, but is it safe to assume wchar_t implementation and size are similar in GNU/GCC at least on Linux ?
Despite to the fact that ...
1
vote
1answer
157 views
ICU Probe All Currency Symbols
Is there a way to probe the ICU library for all UChar's representing currency symbols supported by the library?
My current solution is iterating through all locales and for each locale, doing ...
1
vote
1answer
141 views
Comparing ICU sort keys (collator_get_sort_key) in PHP
Is strcmp() appropriate for comparing ICU collator sort keys in PHP?
The sort keys I'm asking about are from collator_get_sort_key() which are described in ICU documentation.
0
votes
1answer
49 views
Transcoding characters on-the-fly using iostreams and ICU
I'd like to transcode character encoding on-the-fly. I'd like to use iostreams and my own transcoding streambuf, e.g.:
xcoder_streambuf xbuf( "UTF-8", "ISO-8859-1", cout.rdbuf() );
cout.rdbuf( ...
0
votes
3answers
127 views
UnicodeString w/ String Literals vs Hex Values
Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar.
UnicodeString s1(0x0040); // @ sign
UnicodeString ...
0
votes
1answer
48 views
Unicode ICU4C issue about conversion between UTF16 and WCS (OS-X only)
I use ICU4C in a C++ software builded under Windows, Linux and Mac-OSX.
I have an issue ONLY under Mac-OSX, and only related to conversion between UTF16 and WCS (calling u_strToWCS ).
Simply the ...
0
votes
1answer
153 views
Latin<->Han Conversion in ICU?
I am just getting started implementing ICU transforms using ICU4C in a C++ program. I am particularly looking at transliteration to and from Chinese.
According to this document, the package ...
0
votes
1answer
162 views
Has anyone used ICU with Delphi?
Has anyone used the ICU ( see http://site.icu-project.org/ ) DLLs from Delphi?
Specifically I'm interested in the Code Page Conversion and Collation functions.
Looking at the header files it would ...
0
votes
1answer
95 views
NumberFormatter::ORDINAL giving me garbage
I'm trying to use the NumberFormatter class in PHP and I'm having problems with the ORDINAL format. I've tried a couple other formats without a problem. But when I use ORDINAL I just get garbage. ...
0
votes
2answers
369 views
Code to strip diacritical marks using ICU
Can somebody please provide some sample code to strip diacritical marks (i.e., replace characters having accents, umlauts, etc., with their unaccented, unumlauted, etc., character equivalents, e.g., ...
0
votes
1answer
290 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 ...