Regular Expressions 101

Community Patterns

Isolate string in double or single quotes

1

Regular Expression
PCRE (PHP <7.3)

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

Description

Isolate strings inside double or single quotes

Submitted by garsax - 8 years ago