Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
        my $twig = XML::Twig->new( protocol_encoding=>"x-sjis-unicode")
                            ->safe_parse( '<doc/>'); 
      }
    
  2. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
        my $parser = XML::Parser->new( ProtocolEncoding=>"x-sjis-unicode")
    +;
        $parser->parse( '<doc/>'); 
      }