Regular Expressions 101

Community Patterns

REGEX - Find 10 digits, starting with '9'. Can contain white-spaces, but these should be ignored.

0

Regular Expression
ECMAScript (JavaScript)

/
9([\s]*)(\d[\s]*){9}
/
gm

Description

Loading markdown...
Submitted by anonymous - 4 years ago