Skip to content

Instantly share code, notes, and snippets.

@chrislachance
Created September 2, 2021 19:39
Show Gist options
  • Save chrislachance/287e3ebc530bc8ae4513a2e5e994e781 to your computer and use it in GitHub Desktop.
Save chrislachance/287e3ebc530bc8ae4513a2e5e994e781 to your computer and use it in GitHub Desktop.
Regex pattern for Full name with space checking
^[A-Z][a-z]+\s[a-zA-Z\s\.]+
Matches "Chris L", "Chris LaChance", and "Rico del Sola"
@chrislachance
Copy link
Author

Supports "." in second word onward too. Doesn't support characters with accents :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment