Regular Expressions 101

Community Patterns

regex that allows digits, space and hyphen

1

Regular Expression
PCRE2 (PHP >=7.3)

/
^[A-Za-z0-9\s-]+$
/

Description

regex that allows digits, space and hyphen

Submitted by Animesh - 10 months ago