Regular Expressions 101

Community Patterns

Parse KVP (lhs=rhs)

1

Regular Expression
PCRE (PHP <7.3)

/
(Primary Page Category\s*=\s*(["'])?((?:(?!\2).)*)\2?)
/
i

Description

Parse a statement like 'TEST = "math"' or 'TEST = math' or 'TEST = "math is 'good'' to retrieve the rhs.

Submitted by anonymous - 8 years ago