Regular Expressions 101

Community Patterns

Select all special characters except white space

0

Regular Expression
PCRE (PHP <7.3)

/
[^a-zA-Z\d\s]
/
gm

Description

\d - numeric class \s - whitespace a-zA-Z - matches all the letters ^ - negates them all - so you get - non numeric chars, non spaces

Submitted by anonymous - 6 years ago