XML::Parser::Style::Subs - glue for handling element callbacks
use XML::Parser;
my $p = XML::Parser->new(Style => 'Subs', Pkg => 'MySubs');
$p->parsefile('foo.xml');
{
package MySubs;
sub foo {
# start of foo tag
}
sub foo_ {
# end of foo tag
}
}
User Contributed Perl Documentation Parser::Style::Subs(3)
NAME
XML::Parser::Style::Subs - glue for handling element callbacks
SYNOPSIS
use XML::Parser;
my $p = XML::Parser->new(Style => 'Subs', Pkg => 'MySubs');
$p->parsefile('foo.xml');
{
package MySubs;
sub foo {
# start of foo tag
}
sub foo_ {
# end of foo tag
}
}
DESCRIPTION
Each time an element starts, a sub by that name in the package
specified by the Pkg option is called with the same parameters that the
Start handler gets called with.
Each time an element ends, a sub with that name appended with an
underscore ("_"), is called with the same parameters that the End
handler gets called with.
Nothing special is returned by parse.
ATTRIBUTES
See attributes(7) for descriptions of the following attributes:
+---------------+-------------------------------+
|ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+---------------+-------------------------------+
|Availability | library/perl-5/xml-parser-532 |
+---------------+-------------------------------+
|Stability | Volatile |
+---------------+-------------------------------+
NOTES
Source code for open source software components in Oracle Solaris can
be found at https://www.oracle.com/downloads/opensource/solaris-source-
code-downloads.html.
This software was built from source available at
https://github.com/oracle/solaris-userland. The original community
source was downloaded from
http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/XML-
Parser-2.44.tar.gz.
Further information about this software can be found on the open source
community website at http://search.cpan.org/~toddr/.
perl v5.32.0 2014-12-11 Parser::Style::Subs(3)