Regular Expressions 101

Community Patterns

AlphaNumeric + Starts with specific text + no underscores

0

Regular Expression
ECMAScript (JavaScript)

/
^(GLOAWSECAS_Bubble)[a-zA-Z0-9\S]+$
/
gm

Description

  1. Starts with a text prefix
  2. Alpha numeric
  3. Cant have underscores
Submitted by anonymous - 4 years ago