Regular Expressions 101

Community Patterns

Match a string that is equal to a string before a '='

1

Regular Expression
PCRE (PHP <7.3)

/
(?:^|\s)(?'arg1'[a-z]+)=(?P=arg1)
/
g

Description

no description available

Submitted by anonymous - 9 years ago