Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Re: XML::Parser Tutorial

by mirod (Canon)
on Mar 07, 2001 at 21:29 UTC ( [id://62786]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/bin/perl -w
    use strict;
    use XML::Parser;
    ...
      { my( $pe, $elt, %atts)= @_;
        print "my option: ", $pe->{'Non-Expat-Options'}->{my_option}, "\n"
    +;
      }
    
  2. or download this
    #!/bin/perl -w
    use strict;
    use XML::Parser;
    ...
        $p->parse( '<c />') 
           unless( $pe->{'Non-Expat-Options'}->{my_option} > 3);
      }
    
  3. or download this
    element: a - my option: 1
    element: c - my option: 2
    element: c - my option: 3
    element: b - my option: 4
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://62786]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-03-28 13:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found