Tagged Questions
4
votes
2answers
155 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 ...
2
votes
1answer
163 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 ...
1
vote
1answer
90 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
159 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
1answer
101 views
static linking ICU4C makes uregex functions fail
I am going to use ICU4C unicode library with version 4.2.1 (the version which is packaged in Ubuntu 10.04). I made a simple test code; just opening a regular expression object.
#include ...
1
vote
2answers
152 views
1
vote
3answers
817 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.
...
0
votes
1answer
42 views
undefined reference to `u_fopen_48'
I'm new to c/c++ and I guess I have some basic problem. I get undefined reference to u_fopen_48' error when compiling:
#include <unicode/ustdio.h>
int main(int argc, char** argv) {
...
0
votes
0answers
43 views
ICU CompositeBreakIterator in C/C++
Is there any opensource implementation for CompositeBreakIterator in C/C++?
Found Lucene is using this method to handle multilingual text. ...
0
votes
1answer
18 views
Error when linking a program which uses ICU
I have the following piece of code which uses ICU macros in order to determine UTF-8 string length:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include ...
0
votes
2answers
112 views
Getting the current locale with ICU
Many ICU functions take a char * representing the locale as a parameter. If I statically set this to "ko_KR", for example, then it does indeed operate in a locale-sensitive manner.
However, I want ...