the following takes contents of an HTML file (input)
input = input.replaceAll(".*?<span class=\"xgui.*?\">(.*?)</span>.*?", "<cite>$1</cite>");
The idea is to remove the span element and leave the contents. Note that the class of the span can be xgui anything. However, the code is not working.
It spits out this:
<h4><span class="xguiitem">Primary</span> field </h4>
Which is identical to input; ie, it is not doing anything at all.
Any ideas?
Thanks :)
.*?at the beginning and the end of your expression to only replace the span without outer text. – Howard Jun 27 '11 at 19:06