Regular Expressions 101

Community Patterns

Alpha Numeric With Spaces & Limited Punctuation

1

Regular Expression
ECMAScript (JavaScript)

/
^[a-z@-Z0-9?().,'+ /:@-](?: ?[a-z@-Z0-9?().,'+ /:@-]+)*$
/

Description

This allows multiple continuous strings of only alpha numeric characters & limiting punctuation to: ?().,'+ /:@-

Submitted by anonymous - 7 months ago (Last modified 7 months ago)