Thread Alle XML Elemente ermitteln die ein bestimtes Attribut enthalten
(7 answers)
Opened by roli at 2015-05-12 19:07
Hi, ich nutze nur XML::LibXML, aber in XML::Twig gibt es auch die Methode get_xpath aka findnodes, die XPATH-Anweisung wäre dann //*[@filename]. Lt. Doku ggf. XML::Twig::XPath einbinden, um die ganze Pracht von XML::XPath zu nutzen ...
Code (perl): (dl
)
my @nodes = $xmlRoot->get_xpath( qq{//*[@filename]} ); # <--- CAVE: q{, nicht qq{ Ein ganz gutes XPATH-Tutorial findest Du hier. greetz, FIFO Last edited: 2015-05-13 12:05:18 +0200 (CEST) Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"
|