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
When processing names that start with an uppercase char and have a multibyte char in the second position (ie Jöris), the regex in Fiets\Util\Names::ExtractParts matches on the [A-Z]{1}\.?[\W] pattern, because [\W] matches any char not in the set [a-z0-9]. This results in us treating the J as an initial, and replacing the first half of the multibyte ö char with a.
The text was updated successfully, but these errors were encountered:
When processing names that start with an uppercase char and have a multibyte char in the second position (ie
Jöris
), the regex inFiets\Util\Names::ExtractParts
matches on the[A-Z]{1}\.?[\W]
pattern, because[\W]
matches any char not in the set[a-z0-9]
. This results in us treating theJ
as an initial, and replacing the first half of the multibyte ö char with a.The text was updated successfully, but these errors were encountered: