vote up 0 vote down star

Hi I have some html text coming from an rich text control. something like:

<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Verdana" SIZE="10" COLOR="#0000FF"   LETTERSPACING="0" KERNING="0"><A HREF="event:http://bbc.co.uk" TARGET="_blank"><U>l</U></A><U>ink1</U><FONT COLOR="#000000"> blah blah blah. another <FONT COLOR="#0000FF"><A HREF="event:http://cnet.com" TARGET="_blank"><U>link2</U></A></FONT> blah blah</FONT></FONT></P></TEXTFORMAT>

I would like to extract all A tags ie:

<A HREF="event:http://cnet.com" TARGET="_blank"><U>link2</U></A>

Should I be looking into reg expressions or are there any string utils that would accomplish this.

Any hints/help much appreciated.

flag

1 Answer

vote up 1 vote down check

Yaa, You need to look into regular expressions because String utilities are basic String manipulation techniques. You can start with this:

var pattern:RegExp = /<A.*?<\/A>/;
var str:String = '<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Verdana" SIZE="10" COLOR="#0000FF"   LETTERSPACING="0" KERNING="0"><A HREF="event:http://bbc.co.uk" TARGET="_blank"><U>l</U></A><U>ink1</U><FONT COLOR="#000000"> blah blah blah. another <FONT COLOR="#0000FF"><A HREF="event:http://cnet.com" TARGET="_blank"><U>link2</U></A></FONT> blah blah</FONT></FONT></P></TEXTFORMAT>';
trace(pattern.exec(str));

It will output <A HREF="event:http://bbc.co.uk" TARGET="_blank"><U>l</U></A>.

link|flag
Thanks, that did the trick. To find all occurences I used the match() method of the string class and added the global flag to the expression (/<A.*?<\/A>/g;) var matches:Array = str.match(pattern); – Chin Nov 3 at 11:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.