@pfaffman Thanks. That’s not what I meant, I meant:
username__ or username_ or user_name
User_Name
and _Username
should work, but it won’t allow Username_
(“Username must end with a letter or a number”)
Thanks. Is there a way to change it?
There is not an easy way.
Thank you Jay, I appreciate it
I tried to allow Japanese characters as username but failed. However, allowing Chinese only with \p{Han}
takes effect. Is this method not usable anymore?
It should still work. Did you forget the braces at the beginning and end? It should be [\p{Han}\p{Katakana}\p{Hiragana}]
– otherwise could you please provide example usernames that didn’t work?
Thank you!! It works now. The default value of this field was \p{Han}
so I thought the braces were not necessary.