Community Patterns

Community Library Entry

0

Regular Expression
Created·2021-06-06 14:07
Flavor·PCRE (Legacy)

/
^[a-zA-Z]+(([ ][a-zA-Z ])?[a-zA-Z]*)*$
/
g
Open regex in editor

Description

Pattern means:

  • Name must start with characters
  • Only lowercase and uppercase characters is allowed
  • Allowed special character: space
Submitted by anonymous