Community Patterns

Community Library Entry

1

Regular Expression
Created·2021-10-04 10:03
Flavor·PCRE2 (PHP)

/
,(?(?=\d)(?<=\D,))
/
Open regex in editor

Description

this matches all commas except for ones that are next to a digit in some way. change the , or \d or \D according to needs

Submitted by anonymous