Log In
Support
New Account
This forum
This project's trackers
This project's forums
This project's tasks
This project's releases
This project's documents
This project's news
Software/Group
People
Skill
Advanced search
Home
My Page
Project Tree
Code Snippets
Project Openings
LibXML
Summary
Forums
Tracker
Lists
News
SCM
Files
Forums
|
Admin
Discussion Forums:
help
Start New Thread
Nested
Flat
Threaded
Ultimate
Show 25
Show 50
Show 75
Show 100
By:
ali degirmen
xml reader class [ reply ]
2009-06-03 12:40
i'll work with large xml document so decided to use xml::reader
require'xml'
reader = XML::Reader.file('c:/brands.xml')
doc = reader.read
while reader
puts reader.name
end
it turns infinite loop
how can i get wanted values easily with xml reader