Regular Expressions 101

Community Patterns

Unicode alpha-numeric regex

0

Regular Expression
PCRE (PHP <7.3)

/
[\p{L}\p{Nd} ]+
/

Description

Tests for all unicode language characters and number. Excludes any sentence joining characters etc.

Submitted by Jamie - 9 years ago