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.