A regular expression that matches special characters like !
, @
, #
, $
, …
/[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi
Matches:
- ^
- &
- !@#$%
Non-matches:
- alphanumeric
See Also:
- Regular Expressions To Match Unicode Symbols
- Regular Expression To Match Accented Characters
- Regular Expression To Match Non-ASCII Characters
- Regular Expression To Match Only Alphabets And Spaces