I am able to trace the result without any problem. however i would like to convert the result into a string and not an Array. the reason i want to do this is because i need to do a search and replace on each string that is returned.Also can someone help to put each line of the array in a string so i can do the search and replace.Sorry guys i am a newbie in flex dev. thank you very much for your help
var myArrayOfLines:Array = ul.data.split(/\n/);
var line:String;
for each (var lineRaw:String in myArrayOfLines)
{
//line:String = lineRaw.match(pattern);
trace(lineRaw.match(pattern));
}