Posted to tcl by de at Wed Feb 25 17:48:10 GMT 2015view raw

  1.  
  2. package require tdom
  3.  
  4. set xml {<rss version="2.0">
  5. <channel>
  6. <title>BLED- CE2 8-9 ans (orthographe-grammaire-conjugaisons)</title>
  7. <link>https://1fichier.com/?t53txpunwt</link>
  8. </channel>
  9. </rss>}
  10.  
  11. set doc [dom parse $xml]
  12. foreach channel [$doc selectNodes //channel] {
  13. puts "title: [$channel selectNodes string(title)]"
  14. puts "link: [$channel selectNodes string(link)]"
  15. }
  16.