Sepp 0 Posted July 23, 2011 Is there a helpfile for _XMLDomWrapper.au3? In the end I managed to parse valid xml-files but there are many questions. Some of them: * _xmlgetfield is identical to _xmlgetvalue (expect of first element)? * Is there an array version of _XMLGetAttrib, similar to _xmlgetfield? * Is there an element version of _xmlgetvalue (similar to _xmlgetattrib)? * What are requirements for XML-parsing (eg '<main>..</main>' is fine, '<main "a lot of text"> ..</main>' is not)? * Is there a way to parse html (non strict)? Share this post Link to post Share on other sites
JohnOne 1,603 Posted July 23, 2011 A helpfile is not mentioned, so I guess not.All the functions are listed in the AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
twitchyliquid64 23 Posted July 23, 2011 (edited) If you are interested in writing your own XML processor/parser instead, I suggest you look at recursive decent parsing (google), that's how you do it. Edited July 23, 2011 by hyperzap ongoing projects:-firestorm: Largescale P2P Social NetworkCompleted Autoit Programs/Scripts: Variable Pickler | Networked Streaming Audio (in pure autoIT) | firenet p2p web messenger | Proxy Checker | Dynamic Execute() Code Generator | P2P UDF | Graph Theory Proof of Concept - Breadth First search Share this post Link to post Share on other sites
Sepp 0 Posted July 23, 2011 Thanks for the hint on non existing helpfile. Before writing my own parser I should be able to comment on the exising one... Share this post Link to post Share on other sites
twitchyliquid64 23 Posted July 23, 2011 It's more fun if you write your own. Just saying... ongoing projects:-firestorm: Largescale P2P Social NetworkCompleted Autoit Programs/Scripts: Variable Pickler | Networked Streaming Audio (in pure autoIT) | firenet p2p web messenger | Proxy Checker | Dynamic Execute() Code Generator | P2P UDF | Graph Theory Proof of Concept - Breadth First search Share this post Link to post Share on other sites