Hi Oswall
What sort of failure did you get? It helps with this sort of thing to execute the code in a playground and inspect the result. One thing you need to know is that the result of xpath is almost always some sort of XMLCollection, even when there is only one element. I would expect the result you want if you write yearmem := (tree xpath: cardset/card/year) first. Note that you should not need a slash at the start; xpath starts searching in the children of the top node. Also you do not need to give every step of the hierarchy; you can always skip levels provided the result specifies a unique route to the node you want. So in this case you can write: yearmem := (tree xpath: //year) first. Hope this helps Peter Kenny From: Pharo-users <pharo-users-boun...@lists.pharo.org> On Behalf Of oswall arguedas Sent: 12 July 2018 17:09 To: pharo-users@lists.pharo.org Subject: Re: [Pharo-users] XML support for pharo Regards, I practice with the example of the book. I can not read the atomic values of the nodes. For example, with this piece of the example: <cardset> <card> <cardname lang = "en"> Arcane Lighthouse </ cardname> <types> Land </ types> <year> 2014 </ year> To get the atomic value of the node year and assign it to the variable yearmem, I do it like this: yearmem: = tree xpath: '/ cardset / card / year'. But it fails. How do I get the 2014 value? Thank you Oswall _____ De: Pharo-users <pharo-users-boun...@lists.pharo.org <mailto:pharo-users-boun...@lists.pharo.org> > en nombre de oswall arguedas <oswal...@hotmail.com <mailto:oswal...@hotmail.com> > Enviado: miércoles, 11 de julio de 2018 20:17:55 Para: pharo-users@lists.pharo.org <mailto:pharo-users@lists.pharo.org> Asunto: Re: [Pharo-users] XML support for pharo Thanks Franz and Monty. I'm working on it, everything is going very well. The feedback when I master it. Oswall _____ De: Pharo-users <pharo-users-boun...@lists.pharo.org <mailto:pharo-users-boun...@lists.pharo.org> > en nombre de monty <mon...@programmer.net <mailto:mon...@programmer.net> > Enviado: miércoles, 11 de julio de 2018 03:32 Para: pharo-users@lists.pharo.org <mailto:pharo-users@lists.pharo.org> Asunto: Re: [Pharo-users] XML support for pharo This is the latest version of the XML/XPath Scraping Booklet: <https://files.pharo.org/books-pdfs/booklet-Scraping/2018-01-07-scrapingbook .pdf> <https://files.pharo.org/books-pdfs/booklet-Scraping/2018-01-07-scrapingbook .pdf> Scraping HTML with XPath - files.pharo.org files.pharo.org 1.6 Alargeexample Siblings.Siblingsarechildnodesthathavethesameparent.Thecard-name,types,year, rarity,expansionandcardtextelementsareallsib- ___ montyos.wordpress.com