I have links in html with html tags in the href, for example:

<a href ="<strong>hello</strong>.html"><strong>hello</strong></a>

I would like to remove the href containing html without it affecting the link text.

How could I?

link|improve this question
2  
Out of curiosity, how did that markup get into the href attribute in the first place? – Gordon Dec 12 '11 at 17:56
You want to remove the href attribute but not the <a> tag and only if it contains HTML? – Álvaro G. Vicario Dec 12 '11 at 18:25
feedback

1 Answer

A regular expression preg_replace is the most straightforward way to accomplish this. Note how we use the backreference $1 to place the captured text into our replacement string:

$str = '<a href ="<strong>hello</strong>.html"><strong>hello</strong></a>';
$p   = '/<a\shref\s?="<[^>]+>([^<]+)<[^>]+>\.html">/';
$r   = '<a href="$1.html">';

echo preg_replace($p, $r, $str);
// outputs: <a href="hello.html"><strong>hello</strong></a>
link|improve this answer
Thank you. Run, run. But only when I put in $p the. Html ... and not all have the html extension to urls – jon90 Dec 12 '11 at 20:05
feedback

Your Answer

 
or
required, but never shown

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