Regular Expressions 101

Community Patterns

1

teysy

PCRE (PHP <7.3)
kljljljjlkjl
Submitted by nww - 6 years ago

Match text inside of single/double quotes, mysql identifier tokens(`)(ignore escaped nested quotes)

1

Regular Expression
PCRE (PHP <7.3)

/
["'`](?:(?<=")[^"\\]*(?s:\\.[^"\\]*)*"|(?<=')[^'\\]*(?s:\\.[^'\\]*)*'|[^`]*`)
/
g

Description

Loading markdown...
Submitted by Phillip Weber - 6 years ago