Jump to content

remove every image tag in a string? ==SOLVED==


ale1981

Recommended Posts

[b]Jenk:[/b] A few nitpicks. Don't use[tt] ( ) [/tt]if you're not going to use what is captured; use[tt] (?: ) [/tt]instead. White space does not need to be searched for before "img", this is invalid HTML.

[quote author=Wintergreen link=topic=107754.msg433470#msg433470 date=1158159232]
Can you give a slight explanation?
[/quote]

[code]
/
<img ### Match this literally
[^>]*  ### Match any character 0 or more times that is not >
> ### Match this literally
/xi
[/code]


The[tt] /x [/tt]and[tt] /i [/tt] modifiers are explained [url=http://us2.php.net/manual/en/reference.pcre.pattern.modifiers.php]here[/url].

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.