Skip to main content
2 votes
1 answer
135 views

Problem I'm using Saxon-EE 11 and my platform's language is en-us. I'm attempting to implement custom sorting behavior for an <xsl:sort> instruction by specifying a UCA collation. Ignoring the ...
Trevor Lawrence's user avatar
0 votes
0 answers
135 views

In Unicode Locale Data Markup Language(LDML), since version 24, the element and its sub-elements is deprecated. But the MySQL example still uses deprecated element. The collation defined when I ...
Mengyao ZHANG's user avatar
0 votes
1 answer
140 views

I have a fulltext indexed field with charset utf8mb4 on MySQL 8.0 I need to be able to search for queries like "km/h" or "A-B" but with the current charset definition, slash and ...
Julien's user avatar
  • 1,312
1 vote
1 answer
90 views

In frisian the y is and i and sorts just after it, see http://download.mimer.com/pub/developer/charts/frisian.htm. I try to sort data using xquery processor saxonica using frisian language code, or ...
Eduard Drenth's user avatar
1 vote
0 answers
122 views

My goal is to sort a few numbers the same as a handful of characters. ie: 4 sorts the same as A or a 3 sorts the same as E or e Why isn't this working? I've added the following to /usr/share/...
zevlag's user avatar
  • 243
0 votes
0 answers
511 views

I have the following requirement in my project. I need to sort strings based on order of the characters provided by the client. For example: Order provided by the user:d,a,A,D,z,p,P,Z So if we have ...
starkk92's user avatar
  • 5,974
3 votes
3 answers
3k views

What is the theory behind unicode sorting? I understand how it works, but I don't understand why they decided on this standard for collation sorting. It seems that when you have two strings to ...
user3404884's user avatar
4 votes
1 answer
531 views

I'm have an index which stores text strings for search, both in their original form and their collated form (Collated form is used for searching the index, Original is displayed in the results). The ...
scooz's user avatar
  • 828
6 votes
1 answer
245 views

I maintain an open-source, pure-Python implementation of the Unicode Collation Algorithm called pyuca. While it meets my needs in sorting Ancient Greek text (and seems to meet the needs of many other ...
James Tauber's user avatar
  • 3,486
3 votes
1 answer
894 views

Collation under the Unicode Technical Standard #10 (UCA), which is a separate thing from being Unicode Compliant, in case you were wondering about that, implies not only ordering/sorting but also ...
Warren P's user avatar
  • 69.8k