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
Characters from other language alphabets will turn into wrong results (i.e. Gebühr will fail because ).
I guess it is because in the regexp ([A-Z]{0,1}[a-z]+) are used instead of ([[:upper:]]{0,1}[[:lower:]]+) (or \w or [[:alnum:]] or [[:alpha:]] or \p{L} or [\u\l]+).
The text was updated successfully, but these errors were encountered:
Characters from other language alphabets will turn into wrong results (i.e.
Gebühr
will fail because ).I guess it is because in the regexp
([A-Z]{0,1}[a-z]+)
are used instead of([[:upper:]]{0,1}[[:lower:]]+)
(or\w
or[[:alnum:]]
or[[:alpha:]]
or\p{L}
or[\u\l]+
).The text was updated successfully, but these errors were encountered: