i'm trying to parse an XML string formed by a sequence of data of type
<id>1233</id><status>on</status><name>name1</name><id>548</id><status>off</status><name>name2</name>....
this string from 10 to 100 object status,id and name and i'd like to return a string like " 1233 is on , 548 is off..." but I don't know how to but isolate the tags. I hope you can help me