Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
XMLDOMParser
Last updated at 9:40 am UTC on 6 January 2016
This class is an XML parser that parses documents into a DOM tree of nodes. Browse the XML-Parser-DOM category for info on the nodes.

Usage examples:


Writing and reading an XML file



(XMLDOMParser parseFileNamed: 'fao_country_names.xml')
  firstNode
  allElementsSelect: [ : each |
    each localName = 'geographical_region' ].


Source