vote up 1 vote down star

Say I have the following text

..(content).............
<A HREF="http://foo.com/content" >blah blah blah </A>
...(continue content)...

I want to delete the link and I want to delete the tag (while keeping the text in between). How do I do this with a regular expression (since the URLs will all be different)

Much thanks

flag

77% accept rate

5 Answers

vote up 7 vote down check

Avoid regular expressions whenever you can, especially when processing xml. In this case you can use strip_tags() or simplexml, depending on your string.

link|flag
vote up 2 vote down
<?php
//example to extract the innerText from all anchors in a string
include('simple_html_dom.php');

$html = str_get_html('<A HREF="http://foo.com/content" >blah blah blah </A><A HREF="http://foo.com/content" >blah blah blah </A>');

//print the text of each anchor    
foreach($html->find('a') as $e) {
    echo $e->innerText;
}
?>

See PHP Simple DOM Parser.

link|flag
vote up 0 vote down

This will remove all tags:

preg_replace("/<.*?>/", "", $string);

This will remove just the <a> tags:

preg_replace("/<\\/?a(\\s+.*?>|>)/", "", $string);
link|flag
won't that wipe out every tag? – Nerdling Sep 1 at 23:23
isn't that what was asked for? – nickf Sep 2 at 0:36
vote up 1 vote down

Not pretty but does the job:

$data = str_replace('</a>', '', $data);
$data = preg_replace('/<a[^>]+href[^>]+>/', '', $data);
link|flag
vote up -2 vote down

use str_replace

link|flag
how should he do this with different href strings ? – Rufinus Sep 1 at 22:44
(I'm not the downvoter, but as it seems he will not explain why he downvoted, which is not that helpful, might I add, let's guess why...) With str_replace, you cannot specify a "pattern", which is a problem, as the URL can change ; and even if it did not change, you'd have to use two calls to str_replace : one for the openig tag, and one for the closing one, as you want to keep what is beetween. – Pascal MARTIN Sep 1 at 22:46

Your Answer

Get an OpenID
or

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