Regular Expressions 101

Community Patterns

Special Chars

0

Regular Expression
PCRE (PHP <7.3)

/
[]\`\~\!\@\#\$%\^&\*\(\)\-\_\=\+\[\]\{\}\|\\\.\,<\>"\';\:\/\?]
/

Description

matches any special chars (e.g. !@#$)

Submitted by DrewBaker - 8 years ago