Regular Expressions 101

Community Patterns

Verify name with @{name}

1

Regular Expression
ECMAScript (JavaScript)

/
^@[a-zA-Z_.?]{1,},
/
i

Description

Check whether string consists of @{name}. Work only for the beginning of the string.

Submitted by bologer - 8 years ago