I have a collection of text that I am trying to process with PHP dynamically (the data comes from an XML file), however I want to strip the a link and the text that is linked.

PHP's strip_tags takes out the <a etc...> and </a> but not the text in between.

I am currently trying to use the Regex preg_replace('#(<a.*?>).*?(</a>)#', '', $content);

Another thing to note is the links have styles, classes, href and titles.

Does anyone know the solution?

link|improve this question

(related) Best Methods to parse HTML – Gordon Dec 10 '10 at 16:18
1  
For reference, you've grouped the anchor tags but not the content, which is where the problem lies. preg_replace replaces the grouped element (those included in parenthesis). You can try the following though: #(<a[^>]*?>.*?</a>)#i (i flag for a case insensitive compare) – Brad Christie Dec 10 '10 at 16:26
1  
briefly tested shorter regex version, just for fun :) preg_replace ('/<(?:a|\/)[^>]*>/', '', $data); – Cyber-Guard Enterprise Dec 10 '10 at 16:47
feedback

5 Answers

You can use DOMDocument, for example (untested!):

$doc = new DOMDocument();
$doc->loadHTMLFile('foo.php');
$domNodeList = $doc->getElementsByTagname('a'); 
$len = count($domNodeList);
for($i = 0; $i < $len; $i++) {
    $domNodeList[$i]->parentNode->removeChild($domNodeList[$i]);
}
$doc->saveHTMLFile('output.html');

Or using Simple HTML DOM Parser:

$html = file_get_html('http://www.example.com/');
foreach($html->find('a') as $element) { 
   $element->outertext = '';
}
$html->save('output.html');
link|improve this answer
Can somebody explain the down-vote please? – karim79 Dec 10 '10 at 16:36
This answer seems overly complicated for such a simple task... – Cyber-Guard Enterprise Dec 10 '10 at 16:50
@Cyber-Guard Design - I don't think it is overly complicated. And it will certainly be more reliable than a regular expression. – karim79 Dec 10 '10 at 16:56
feedback

try this:

$content=preg_replace('/<a[^>]*>(.*)<\/a>/iU','',$content);
link|improve this answer
Awesome! Now I see the reason for learning regular expressions well! And how do I strip tags but not the ones with "<img" in them? – edem Mar 22 '11 at 19:45
feedback

Because the a-Element is not the online one, that can break your page, you better should use a whitelist approach, like strip_tags().

link|improve this answer
1  
Sorry really have no idea what you mean...? – Pez Cuckow Dec 10 '10 at 16:10
I dont know exactly, what you want, but usually you should specify, which tags are allowed, and not, which are not allowed. If you want to remove the tags because of security issues, think of iframe, img, or link. – KingCrunch Dec 10 '10 at 16:14
feedback
up vote 0 down vote accepted

I used the solution(s) posted as comments, they seemed to work best and were exactly what I was looking for!

"For reference, you've grouped the anchor tags but not the content, which is where the problem lies. preg_replace replaces the grouped element (those included in parenthesis). You can try the following though: #(<a[^>]*?>.*?</a>)#i (i flag for a case insensitive compare)" – Brad Christie

"briefly tested shorter regex version, just for fun :) preg_replace ('/<(?:a|\/)[^>]*>/', '', $data);" – Cyber-Guard Design yesterday

link|improve this answer
feedback

With regex, but not thoroughly tested

echo preg_replace('#(<a.*?>)(.*?)(<\/a>)#','$2', $str);

Also, the limit argument set to -1 will set it to no limit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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