Thread <b>*</b> mit perl aus XML filtern?
(64 answers)
Opened by Hunnenkoenig at 2009-10-27 18:57
XML::LibXML in verbindung mit xpath ist dafür ganz gut geeignet:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 use XML::LibXML; my $parser = XML::LibXML->new(); my $doc = $parser->parse_string(<<"EOT"); <foo> <blubb><b >username</b> </blubb><b>nochn username</b> </foo> EOT my @names = map { $_->textContent } $doc->findnodes("//b"); print for @names; klappt auch, wenn eben nicht <b> da steht, sondern <b > o.ä. Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |