Regular Expressions 101

Common Separated Values

1

Regular Expression
PCRE2 (PHP >=7.3)

/
\A[^,]*(?=,)[^,]*(?=,)|(?<=,)[^,]*|[^,]+\Z
/
gm

Description

Parse common separated value

Submitted by Iulian Fecioru - a month ago