File: ex6.pl

package info (click to toggle)
libxml-dt-perl 0.3-1.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 296 kB
  • ctags: 42
  • sloc: perl: 914; xml: 424; makefile: 64
file content (13 lines) | stat: -rwxr-xr-x 295 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
use XML::DT ;
my $filename = "ex6.xml";;

# Test comparasion of atribute with string...
# tests the normalize-space function

%handler=(
	  '-inputenc' => 'ISO-8859-1',
     '//*[normalize-space(@id) = "a"]' => sub{print "$c\n";toxml},
);
pathdt($filename,%handler);
print "\n";