Regular Expressions 101

Community Patterns

Match String

1

Regular Expression
PCRE (PHP <7.3)

/
("([^"]|\\")*[^\\]"|"")
/
g

Description

Matches strings, and hopefully works with escaped close-quotes

Submitted by Tom Hartley - 8 years ago