NAME
Cz::Cstocs - conversions of charset encodings for the Czech language
SYNOPSIS
use Cz::Cstocs;
my $il2_to_ascii = new Cz::Cstocs 'il2', 'ascii';
while (<>)
{ print &$il2_to_ascii($_); }
DESCRIPTION
This module helps in converting texts between various charset encodings, used for Czech and Slovak languages. The instance of the object Cz::Cstocs, taking two parameters for input and output encoding, can be afterwards used as a function reference to convert strings. For backward compatibility, method conv is supported as well, so the example above could also read
while (<>)
{ print $il2_to_ascii->conv($_); }
The conversion function takes string and returns string.
Currently the encodings included in this package are:
ascii cork il1 il2 kam koi8 pc2 vga 1250
the encoding files can be found in the Cz/Cstocs/enc directory.
AUTHOR
Jan Pazdziora, adelton@fi.muni.cz created the module version.
Jan "Yenya" Kasprzak has done the original Un*x implementation.
VERSION
3.07
SEE ALSO
cstocs(1), perl(1).