This a newbie question, since I am not so skilled in Ruby.
Working with texts in languages other than English can be
problematic because of differing national character sort orders.
Besides ordinary “a-z” there are three more letters in Swedish:
“åäö”, in ASCII \206\204\224. Luckily, they come after "z"
but the order of the two first are reversed when sorted as ASCII.
Is it possible to handle this effectively in the optional code block for sort?
Generally, one would like to have access to locale sort order.
In Java it is quite easy to define sort order by specifying a locale:
Locale myLocale;
myLocale=new Locale(“se”,“SE”);
Collator se_SECollator = Collator.getInstance(myLocale);
Collections.sort(myArray, se_SECollator);
Does such utilities exist in the Ruby context?
A POSIX locales collection is to be found at:
http://std.dkuug.dk/i18n/WG15-collection/locales/
Bengt Dahlqvist