Regular Expressions 101

Community Patterns

0

INI values

PCRE2 (PHP >=7.3)
not done yet
Submitted by anonymous - a year ago
0

Time in hh:mm:ss

PCRE (PHP <7.3)
19h32min16s
Submitted by anonymous - a year ago

Trim leading zeroes in numbers 012.210 => 12.21

1

Regular Expression
PCRE (PHP <7.3)

/
^(\-{0,1})(?:(?:0*)(\d+))?((?:\.)(?:\d*?))?0*$
/
gm

Description

Loading markdown...
Submitted by FAy - 7 years ago