This regex pattern matches a string that starts with one or more uppercase letters, spaces, or commas, followed by a colon at the end. It is used to validate a format like 'LAST NAME AND FIRST NAME, COMPANY NAME OR BUSINESS NAME:'
Interactive Regex Playground
^[A-Z\s,]+:$
This regex pattern matches a string that starts with one or more uppercase letters, spaces, or commas, followed by a colon at the end. It is used to validate a format like 'LAST NAME AND FIRST NAME, COMPANY NAME OR BUSINESS NAME:'
Matches
Found 0 matches