Tagged Questions
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 ...
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
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 ...
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
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
57 views
lucene collation
we are using lucene on .net, and we need a way to implement a search which is "collation agnostic" I do not know if this is the right term but what we need is if I have a user called
[Žuf] I want to ...
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
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 ...