Regular Expressions 101

Community Patterns

Match all strings that ends with more than 3 numbers

0

Regular Expression
ECMAScript (JavaScript)

/
[0-9]{3,}$
/
gm

Description

no description available

Submitted by anonymous - 9 years ago