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
The lowercase, uppercase, and the not yet merged titlecase function do not handle the special casing conventions outlined in UTR#21 correctly.
Examples
julia>lowercase("OΔΥΣΣΕΥΣ")
"oδυσσευσ"# wrong, uses the non-final sigma"oδυσσευς"# would be correct, uses the final sigma
EDIT (2021/03/19): This example has become obsolete due to a 2017 change in German orthography.
julia>uppercase("Spaß")
"SPAß"# wrong"SPASS"# would have been correct until 2017
The text was updated successfully, but these errors were encountered:
stevengj
changed the title
Unicode case functions do handle special conventions correctly
Unicode case functions don't handle special conventions correctly
Dec 6, 2016
As previously discussed in #19469
The
lowercase
,uppercase
, and the not yet mergedtitlecase
function do not handle the special casing conventions outlined in UTR#21 correctly.Examples
EDIT (2021/03/19): This example has become obsolete due to a 2017 change in German orthography.
The text was updated successfully, but these errors were encountered: