I don't know how to tell what href is relative to, but even just to get the value of href is a bit gimpy for "processing instructions", which is what <? ... ?> are.
#!/usr/bin/perl -w
use strict;
use XML::LibXML;
my $parser = XML::LibXML->new;
my $doc = $parser->parse_string(<<'EOX');
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href ='abc"efg'?>
<_/>
EOX
foreach my $node ($doc->findnodes('//processing-instruction()')) {
my $name = $node->nodeName;
if ($name eq 'xml-stylesheet') {
# getData is a string like q{type="text/xsl" href="/test.xsl"}
# which is what makes it annoying
my $attr_str = $node->getData;
# manually parse the string like href='abc"efg';
# there might be a better way of doing this
$attr_str =~ m{href\s*=\s*(['"])([^\1]+)\1};
my $href = defined $2 ? $2 : '';
print "$name href: >>>$href<<<\n";
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|