Regular Expressions 101

Community Patterns

Get the number which length = 15 in string

0

Regular Expression
ECMAScript (JavaScript)

/
(?<!\d)\d{15}(?!\d)
/
gm

Description

Match the number which length = 15 in string

Submitted by TQT - 3 years ago