Reputation: 80176
I have read the following from Collator's Javadoc.
"The exact assignment of strengths to language features is locale dependant. For example, in Czech, "e" and "f" are considered primary differences, while "e" and "ê" are secondary differences, "e" and "E" are tertiary differences and "e" and "e" are identical."
Does this mean that I should set the STRENGTH based on the language I am using? If so can someone suggest the defaults for the locales: us_en, us_es, ca_fr, spain_spanish, chile_spanish, portuguese
Upvotes: 12
Views: 1949
Reputation: 4228
It really depends on what you're trying to do. The following is true for most (all?) languages that use the Latin alphabet:
(accented A)
and (A) + (accent)
There will be slight variations between languages, but in essence:
Upvotes: 14