You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that Julia doesn't contain a functionality that can handle localized string manipulation. For example uppercase and lowercase functions cannot be used with locales like tr_TR.
One thing to do here would be to bring back https://github.com/JuliaStrings/ICU.jl. The design of the C locale system is really not good, and we want to avoid changing the behavior of functions based on locale whenever possible. But it would be great to have this function available in a package.
I noticed that Julia doesn't contain a functionality that can handle localized string manipulation. For example
uppercase
andlowercase
functions cannot be used with locales like tr_TR.ISTANBUL
is not the right uppercase ofistanbul
in Turkish, it has to beİSTANBUL
Same goes for
lowercase
functionAgain,
isparta
is not the right lowercase ofISPARTA
in Turkish, it has to beısparta
.I am sure there are some other examples from other languages. I hope you can add this to the next versions of Julia.
Thanks!
The text was updated successfully, but these errors were encountered: