Regular Expressions 101

Community Patterns

Match HTML img elements with URL source

1

Regular Expression
PCRE (PHP <7.3)

/
<img.*?src="(?!cid:)(http:(\/\/|\\\\)|https:(\/\/|\\\\))[^:*?"<>|]+".*?>
/
gm

Description

Matches all img tags that have a URL for the src attribute.

Useful for updating all those links in your email templates, or where ever your using the <img> tag

Submitted by Doom87er - 6 years ago