Help for this page

Select Code to Download


  1. or download this
    ...
    my @Test;
    ...
    
    @Test=encode("cp1250",@Test);
    ...
    
  2. or download this
    use Encode;
    ...
    ...
    $SheetOut->write(0,1, encode( "cp1250", "Šš" );
    $SheetOut->write(0,2, encode( "cp1250", "Žž" );
    ...