Well basically, I will get a string with multiple pieces <name ... /> <address ... /> <phone ... />
ETC.. Basically, I need to say var string:XML = currentpiece (<name ... />, <address ... />, etc).. So how can I (like how I pass tag in for the regexp) separate the <address /> tag or whatever, depending on which node (address, name, phone, etc) I am working with?

