I need a regular expressions to remove "span" tag from anchor but can't get this to work quite right for some reason.

Some background, I am using Lucene Highlighter and attempt to highlight "http".

Text before passing to highlight:

<a href='http://somesite.com' target='blank'>http://somesite.com</a>

After highlight:

<a href='<span style="background-color:#ffff00">http</span>://somesite.com' target='blank'><span style="background-color:#ffff00">http</span>://somesite.com</a>

As you can see its highlighted "http" (changed backcolor), but it also changed "http" inside the href anchor, now I can not open the page.

I want to do some post process regular expression to remove "span" tag from href but preserve value inside the span.

Expected result:

<a href='http://somesite.com' target='blank'><span style="background-color:#ffff00">http</span>://somesite.com</a>

Thanks for your help.

link|improve this question

20% accept rate
You shouldn't use regex to parse HTML. See this wonderful answer: stackoverflow.com/questions/1732348/… – donkapone Dec 1 '11 at 6:49
Thanks, will look at the link you provided. – Din Dec 1 '11 at 22:56
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.