Total no. of elements: #myXML.Count('//*')#
Total no. of projects with 10 or more downloads: #myXML.Count('//project[DOWNLOADS > 10]')#
Names of child elements in the 'project' element: #ArrayToList( myXML.Names('//project/*') )#
a. Get the project names: #ArrayToList( myXML.Search('//project/NAME') )#
b. Get project names with links and output in a list:
End of XML Reader examples