Perl module to convert between ASCII and Morse codes
BinHex is a format used by Macintosh for transporting Mac files safely through
electronic mail, as short-lined, 7-bit, semi-compressed data streams.
Convert::BinHex provides a means of converting those data streams back into into
binary data.
Convert::Binary::C is a preprocessor and parser for C type definitions.
It is highly configurable and should support arbitrarily complex data
structures. Its object-oriented interface has "pack" and "unpack"
methods that act as replacements for Perl's "pack" and "unpack" and
allow to use the C types instead of a string representation of the data
structure for conversion of binary data from and to Perl's complex data
structures.
Convert::IBM390 -- functions for manipulating mainframe data
Convert::IBM390 is a Perl module. It supplies various functions that
you may find useful when messing with IBM System/3[679]0 data. See the
POD documentation in the module, or "man Convert::IBM390" after you have
installed it.
asc2eb, eb2asc, eb2ascp: ASCII/EBCDIC conversion
packeb, unpackeb: pack/unpack and convert an EBCDIC record
hexdump: dump memory in an MVS-like format
Convert::NLS_DATE_FORMAT is a Perl module to convert Oracle's NLS_DATE_FORMAT
string into a strptime format string, or the reverse.
This is Convert::PEM, a module implementing read/write access
to ASN.1-encoded PEM files (with optional encryption).
Perl extension interface to convert to JSON (JavaScript Object Notation).
Convert::Recode is a front end to the GNU recode program. It will
build a perl tr/// function based on the mapping tables that recode
knows about.
Perl module to read TNEF files
TNEF stands for Transport Neutral Encapsulation Format, and if
you've ever been unfortunate enough to receive one of these files
as an email attachment, you may want to use this module.
SYNOPSIS
use Convert::UU qw(uudecode uuencode);
$encoded_string = uuencode($string,[$filename],[$mode]);
($string,$filename,$mode) = uudecode($string);
$string = uudecode($string); # in scalar context
DESCRIPTION
uuencode() takes as the first argument a scalar that is to
be uuencoded. Alternatively a filehandle may be passed
that must be opened for reading. It returns the uuencoded
string including begin and end. Second and third argument
are optional and specify filename and mode. If unspecified
these default to "uuencode.uu" and 644.
uudecode() takes a string as argument which will be
uudecoded. If the argument is a filehandle this will be
read instead. Leading and trailing garbage will be
ignored. The function returns the uudecoded string for the
first begin/end pair. In array context it returns an array
whose first element is the uudecoded string, the second is
the filename and the third is the mode.