Help for this page

Select Code to Download


  1. or download this
    use Encode qw( decode );
    my $url = "http://ufal.mff.cuni.cz/~hajic/courses/npfl067/TEXTCZ1.txt"
    +;
    my $content = decode('iso-8859-2', get($url));
    
  2. or download this
    {
       open my $FH, ">:encoding(iso-8859-2)", 'file_iso-8859-2.txt'
    ...
          or die "$!\n";
       print $FH $content;
    }