Regular Expressions 101

Community Patterns

Match Valid HTML Attributes with Values

1

Regular Expression
PCRE2 (PHP >=7.3)

/
(?:[a-zA-Z][a-zA-Z0-9-]*\s*=\s*(?:"[^"]*"|'[^']*'))+
/
gm

Description

Submitted by anonymous - a month ago