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?
|
I have links in html with html tags in the href, for example:
I would like to remove the href containing html without it affecting the link text. How could I? | |||
|
feedback
|
|
A regular expression preg_replace is the most straightforward way to accomplish this. Note how we use the backreference
| |||
feedback
|
hrefattribute but not the<a>tag and only if it contains HTML? – Álvaro G. Vicario Dec 12 '11 at 18:25