Help for this page

Select Code to Download


  1. or download this
    use XML::Rules;
    
    ...
    </KVPair>
    </SigData>
    </root>
    
  2. or download this
      start_rules => {
        'the,list,of,such,tags' => 'skip'
      },
    
  3. or download this
    my $parser = XML::Rules->new(
        stripspaces => 3,
    ...
    
    use Data::Dumper;
    print Dumper($data);
    
  4. or download this
    my $parser = XML::Rules->new(
        stripspaces => 3,
    ...
        },
    );
    my $data = $parser->parse(\*DATA);