Regular Expressions 101

Community Patterns

Capture any number up to decimal and two digits after decimal if they exist

0

Regular Expression
PCRE (PHP <7.3)

/
^.*?\.\d{1,2}
/
gm

Description

Wrote without research on existing solutions, so test before using in production.

Submitted by anonymous - 5 years ago