How to Restrict Input of Special Characters and Non-English Alphabets in Account Name field
We have a Requirement that: In the Account Name field, Users should not be able to enter any characters / Non-English Alphabets / symbols other than English Alphabets, Numbers and only these characters: ;,.()"&
We used the following expression:
(((FindOneOf([<AccountName>],"qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM")=1) OR (FindOneOf([<AccountName>],"9876543210")=1) )AND (FindOneOf([<AccountName>],"!@#$%^*")=0))
It does a strange thing: in the Account Name it Does Not Allow: 屁吾艾TEST but Allows Users to type: TEST屁吾艾
Is this a System Defect / limitation or we have a viable workaround.
Thanks and regards
SG