Regular Expressions 101

Community Patterns

Match special characters excl. unicode accented, _, -, and whitespace

0

Regular Expression
ECMAScript (JavaScript)

/
([^A-Za-z0-9 _\-\u00C0-\u024F\u0400-\u04FF\u0374-\u03FF]+)
/
g

Description

Covers Latin-1 Supplement Latin Extended-A Latin Extended-B Greek and Coptic

Submitted by anonymous - 8 years ago