Goose Posted April 15, 2007 Share Posted April 15, 2007 I have an xml string that I want to parse. I have read the w3schools xml tutorial and I still cannot figure all of this out. I want to do two things: Count the number elements in a given xml string (for a particular xml element) and access a particular value of an xml element. Here is an example of an xml string that I would be dealing with. Note, in my example there can be many <room> elements, many <message> elements and many <user> elements. Thanks in advance! <room> <name>Default</name> <id>1</id> <messages> <message> <usr>goose</usr> <msg>Hello everyone!</msg> </message> <message> <usr>goose</usr> <msg>This is an XML example.</msg> </message> </messages> <users> <user> <uid>1</uid> <usr>goose</usr> </user> </users> </room> Quote Link to comment Share on other sites More sharing options...
fenway Posted April 20, 2007 Share Posted April 20, 2007 There must be a JS library for this... Quote Link to comment Share on other sites More sharing options...
obsidian Posted April 20, 2007 Share Posted April 20, 2007 Try out XML for <script> from Sourceforge. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.