Regular Expressions 101

Community Patterns

String with escaped quotes

0

Regular Expression
PCRE2 (PHP >=7.3)

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

Description

Regex for parsing strings

  • Works with Flex lexical analyzer generator
  • Allows escaped quotes
Submitted by Lech Mazur - 2 years ago