Community Patterns

Community Library Entry

0

Regular Expression
Created·2019-03-01 03:53
Flavor·PCRE (Legacy)

/
^[A-Za-z](\d|[A-Za-z]|_){2,29}$
/
gm
Open regex in editor

Description

  • alphabetic small and capital
  • numeric 0-9
  • may contain underscore
  • must be at least 3 characters
  • cannot be longer than 30 characters
Submitted by anonymous