My understanding for the error, does it means not allow special character for Username?
If i want to use validator Constraint Regex Formula:
message = Please key in the valid name.
regex = ^[a-zA-Z][a-zA-Z0-9._]*[a-zA-Z0-9]$
Error message : It always give me, Please key in the valid name.
sample Name that i wish to be pass is
Result that Pass :
NURIASHA BINTI ABD HALIM
Result that Fail :
NURIASHA BINTI ABD HALIM @ ROBERT
^[\w\d@&\.-]+
- Jorge Campos