How do I restrict UPPERCASE words using RegEX
Summary:
I am trying to restrict Member Name with Uppercase words. How can I achieve this through Validation.
Please see below snippet as an example:
I am trying this expression in RegEX: \b[A-Z]+\b
- Member Name: ABC ⇒ It throws validation
- Member Name: ABC DEF ⇒ Does not throw validation
- Member Name: ABC def ⇒ Does not throw validation
So it just understands one word if it is in CAPS but for other cases it just does not throw any validation as soon as I put a second word.
Content (please ensure you mask any confidential information):
Version (include the version you are using, if applicable):
0