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 ...
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 ...
3
votes
2answers
560 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
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 ...
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
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
378 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
149 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
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
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
vote
2answers
191 views

boost with icu u32_regex memory leak / cache on Win32

When using the boost regex class with the optional ICU support enabled (see boost documentation for details) I seem to get a memory leak or rather some sort of caching of memory happening which I ...
1
vote
1answer
121 views

ICU and string compare

can anybody explain why the following compare are not equal? void CompareTest() { UErrorCode status = U_ZERO_ERROR; UChar ruleset[500]; *ruleset = 0; int32_t rlen = 0; UCollator *coll = ...
1
vote
2answers
208 views

can i convert from char* to UChar in ICU?

I have a char * (containing utf-8 string) that i want to pass to ICU to convert it to ANSI (ISO-8859-6) . Unfortunately it seems that most ICU functions take UChar not char*. How can I make this ...
1
vote
2answers
558 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
2answers
549 views

Convert ICU UnicodeString to platform dependent char * (or std::string)

In my application I use ICU UnicodeString to store my strings. Since I use some libraries incompatible with ICU, I need to convert UnicodeString to its platform dependent representation. Basicly what ...
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
3answers
778 views

C++ encode string to Unicode - ICU library

I need to convert a bunch of bytes in ISO-2022-JP and ISO-2022-JP-2 (and other variations of ISO-2022) into Unicode. I am trying to use ICU (link text), but the following code doesn't work. ...
1
vote
1answer
970 views

UnicodeString to char* (UTF-8)

I am using the ICU library in C++ on OS X. All of my strings are UnicodeStrings, but I need to use system calls like fopen, fread and so forth. These functions take const char* or char* as arguments. ...
1
vote
1answer
138 views

Building xalana 1.11 using ICU - Mac

Has anybody compiled xalan 1.11 using ICU? I am building it using ICU and its generating one library called libxalanMsg.111.0.dylib and its being generated using the below mentioned steps ...
1
vote
3answers
328 views

ICU Custom Currency Formatting (C++)

Is it possible to custom format currency strings using the ICU library similar to the way it lets you format time strings by providing a format string (e.g. "mm/dd/yyy"). So that for a given locale ...
0
votes
0answers
36 views

how to get eclipse CDT debugger to show contents of unicode strings?

I have a c++ project that uses ICU unicode strings heavily. recently I started using the eclipse CDT IDE, but I cannot watch the contents of the strings while debugging. the only options are printing ...
0
votes
1answer
49 views

Using ICU to implement my own codecvt facet

I want to implement a codecvt facet using ICU to convert from any character encoding (that ICU supports) to UTF-8 internally. I'm aware that codecvt_byname exists and that it can be used to do part ...
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
2answers
129 views

Help Editing Code to Fix “Argument list too long” Error

I am currently doing some testing with a new addition to the ICU dictionary-based break iterator. I have code that allows me to test the word-breaking on a text document but when the text document is ...
0
votes
1answer
96 views

Adding user defined rule to existing language

can anybody explain what the correct way is to load existing rules in a language and add some new to them. I do the following but the rule is not set. void CompareTest() { UErrorCode status = ...
0
votes
1answer
154 views

why UChar* is not working with this ICU conversion?

When converting from UTF-8 to ISO-8859-6 this code didn't work: UnicodeString ustr = UnicodeString::fromUTF8(StringPiece(input)); const UChar* source = ustr.getBuffer(); char target[1000]; ...
0
votes
1answer
108 views

Problems building ICU samples under VS2008

I tried to build ICU4C sample "uncv" using visual studio 2008 without success I added the header directories (Configuration Properties > C/C++ > General > Additional Include Directories) referenced ...
0
votes
2answers
132 views

ICU Currency Locale Get Denomination

Is there a way to probe an ICU Currency Locale for it's minimal denomination? For example US's would be $0.01, Korea (ko_KR) would be ₩1. I thought calling getRoundingIncrement() on the DecimalFormat ...
0
votes
2answers
111 views

Set UnicodeString to C string without allocating a new UnicodeString

As of ICU 4.2.1, the only straight-forward way to set a UnicodeString to a C string is to construct a new UnicodeString with the data, and then set the desired string to the new one, thus allocating, ...
0
votes
1answer
159 views

NumberFormat/DecimalFormat treats certain floating-point values as longs instead of doubles

NumberFormat/DecimalFormat doesn't seem to parse strings with the "#.0" format (where # is any number) as a double. The following code illustrates this: #include <cstdio> #include ...
0
votes
2answers
793 views

Linux Installing Library (ICU) Question

I'm a relative noob to installing libraries. My system currently has an older version of the ICU library (3.8) and I want to go the latest (4.4). Following the steps in the ICU readme.html, ...
0
votes
2answers
367 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
277 views

Locale C++ shared library in /usr/local/lib

I'm venturing into the world of C++ and Linux, and am having problems linking against a shared library. I have a library, libicuuc.so.44.1, installed in /usr/local/lib. There is also a link in the ...
0
votes
1answer
99 views

How to convert estimated time to string with ICU library

How to convert estimated time to string with ICU library?
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 ...