Community Patterns

Community Library Entry

1

Regular Expression
Created·2026-02-12 05:04
Flavor·PCRE2 (PHP)

/
(?P<isminus>-)? (?P<number> (?P<justdecimal> (?P<justdecpoint>\.) (?P<justdecdigits>\d+) ) | (?P<integer> (?P<withcommas> (?:\d{1,3}) (?:,\d{3})+ ) | (?P<nocommas>\d+) ) (?P<decimal> (?P<decpoint>\.) (?P<decdigits>\d+) )? )
/
gmx
Open regex in editor

Description

selects numbers, with commas and decimals, like 1,234.56

Submitted by Bicorn