Regular Expressions 101

Community Patterns

regex to prevent special charecters and allow white spaces

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^[a-zA-Z ]+$
/

Description

regex to prevent special charecters and allow white spaces for your string

Submitted by anonymous - a year ago