How can I keep for example the first img tag but strip all the others?

(from a HTML string)

example:

<p>
 some text 
 <img src="aimage.jpg" alt="desc" width="320" height="200" /> 
 <img src="aimagethatneedstoberemoved.jpg" ... />
</p>

so it should be just:

<p>
 some text 
 <img src="aimage.jpg" alt="desc" width="320" height="200" /> 
</p>
link|improve this question
2  
Example string, please, and your attempt. – Michael Petrotta Sep 17 '11 at 20:44
do you have an example? – Book Of Zeus Sep 17 '11 at 20:44
Also, parsing HTML with PHP is not a very good idea (although we 've all done this at some point I guess). If you can redefine the problem to avoid this, do so. – Jon Sep 17 '11 at 20:45
but I need to do it with PHP somehow – Anda Sep 17 '11 at 20:46
3  
Use an HTML parser: stackoverflow.com/questions/3577641/… – arnaud576875 Sep 17 '11 at 20:59
show 3 more comments
feedback

1 Answer

You might be able to accomplish this with a complex regex string, however my suggestion would be to use preg_replace_callback, particularly if you are on php 5.3+ and here's why. http://www.php.net/manual/en/function.preg-replace-callback.php

$tagTracking = array();
preg_replace_callback('/<[^<]+?(>|/>)/', function($match) use($tagTracking) {
    // your code to track tags here, and apply as you desire.
});
link|improve this answer
This is an incomplete answer and points the OP in the wrong direction. PHP has native HTML DOM parsing functionality, plus third party tools which make that easier to use, and DOM manipulation is a far more suitable method for this. – Peter Boughton Sep 17 '11 at 21:54
I respect your opinion. And while PHP does have DOM parsing functionality, which you also didn't provide for him, here: php.net/manual/en/book.dom.php - this is a simple solution in terms of simplicity. As for not providing complete code, I didn't see it necessary to do all of the code, but provide the framework so that he can figure out for himself how he wants to use it. – Howard Sep 18 '11 at 0:29
I didn't provide the links because they've already been provided, both as a comment on the question, and as an answer to a follow-up question. – Peter Boughton Sep 18 '11 at 1:23
Providing a framework is fine in general, but you've not really explained it nor pointed out that it should be used with care, and it is such a simple solution that you might have well just added the logic to say "if first image, return matched text, else return empty string", because that's basically all that's missing (well, and the regex updated to only cater for img tags) - that's why I'm saying it's incomplete. – Peter Boughton Sep 18 '11 at 1:23
(p.s. hope this isn't coming across as whingy/whatever - my intent is to be constructive) – Peter Boughton Sep 18 '11 at 1:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.