Regular Expressions 101

Community Patterns

Extract CSV Rows

1

Regular Expression
PCRE2 (PHP >=7.3)

/
^(?:[^,"]+|"[^"]*")*(?:,(?:[^,"]+|"[^"]*"))*$
/
gm

Description

Submitted by anonymous - a month ago