Regular Expressions 101

Community Patterns

Image tags without an alt attribute

0

Regular Expression
PCRE (PHP <7.3)

/
^<img((?!alt=".*")(\n|.))*(>|\/>)$
/
gm

Description

Matches any image tags that do not include an alt attribute in their definition.

Submitted by anonymous - 4 years ago