Regular Expressions 101

Community Patterns

4

import url image

Python
import url image
Submitted by bartimeys - 8 years ago

Remove common numeric suffixes (eg: 40m, 60%)

4

Regular Expression
PCRE (PHP <7.3)

/
\b([\d\.]+)[mkb%](?!\S)
/
ig

Description

Loading markdown...
Submitted by anonymous - 8 years ago