Help for this page

Select Code to Download


  1. or download this
    my $p= XML::Parser->new( Style => 'Tree'
                        , ProtocolEncoding => 'windows-1250' );
    my $XmlDok=$p->parse( '<RAP>ó</RAP>' );
    my $xso = XML::SimpleObject->new( $XmlDok );
    my $buff = $xso->child('RAP')->value;
    
  2. or download this
    my $Map= new Unicode::Map("CP1250");
    $buff= $Map->from_unicode(  Unicode::Transform::unicode_to_utf16be(  $
    +buff )
     );