I am trying to covert string to local case.
Is it possible to convert a string to lower case internationally not just for specific locale.
I am trying to covert string to local case.
Is it possible to convert a string to lower case internationally not just for specific locale.
No, it would be meaningless.
How do you deal, for example, with the German ß, or other alphabets?
You always need a locale to do the job properly, unless, of course, you're satisfied with mapping [A - Z] to [a - z], in which case String#toLowerCase
will do the job.