Jump to content

clean words with regex


mraza

Recommended Posts

Hi,

I have some text coming like this

this is text <a href=""> School </a> and 
this is <a href=""> another text </a> and this what i need 
to remove <a href="">http://somelink...</a> also

I wants to remove all href tags but leave inner text if it is not an http link, i have this regex but this remove all of my text but as above example i wants to keep "School" and "another text".

results should like like this after  regex.

this is text School and
this is another text and this what i need
to remove also

.

 

regex i have

preg_replace("/<a[^>]+href[^>]+>.*\<\/a\>/", "", $text);

but this remove all href tags with inner text.

thanks for any help

Link to comment
https://forums.phpfreaks.com/topic/233894-clean-words-with-regex/
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.