i have pretty much this XML to work with Actionscript 3.0:
<view id="view_lab" class="project.views.Lab" title="-<b><font color'#FF0000'>Lab</font></b>">
<view id="view_lab" class="project.views.Lab" title="-<b><font color'#FF0000'>Lab</font></b>">
<view id="view_lab" class="project.views.Lab" title="-<b><font color'#FF0000'>Lab</font></b>">
And i have this regex to get everything in title TAG: title= /"[^"]"/
Problem is that i want to capture only the "<" and ">" to replace for > and < without using 2 regex's. Since that XML is already a string.
So i've been trying something like this, which not seems to work unfortunaly: /title="(<)*(>)*([^"])+"/