Link to home
Start Free TrialLog in
Avatar of cabou
cabou

asked on

Remove img tags with regex

Hi experts,

How can I renove from an html string all the image tag that have class=flickr using regex

for exemple
<img src="pic.jpg"> should not be removed
and
<img src="pic.jpg" class="flickr"> should not be removed

Thanks
Avatar of Chandan_Gowda
Chandan_Gowda
Flag of United States of America image

can you please be more clear
Avatar of ozo
<img[^<>]* class="flickr"[^<>]*>
ASKER CERTIFIED SOLUTION
Avatar of Pigtor
Pigtor
Flag of Mexico image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial