Ports Search

Results 7180 of 186 for /converters/.(0.003 seconds)
converters/Convert-Morse-0.06 (Score: 0.17956966)
Perl module to convert between ASCII and Morse codes
Perl module to convert between ASCII and Morse codes
converters/Convert-BinHex-1.125 (Score: 0.17956966)
Perl module to extract data from Macintosh BinHex files
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.
converters/Convert-Binary-C-0.78 (Score: 0.17956966)
Binary Data Conversion using C Types
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.
converters/Convert-IBM390-0.28 (Score: 0.17956966)
Functions for manipulating mainframe data
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 Oracle NLS_DATE_FORMAT <-> strftime format strings
Convert::NLS_DATE_FORMAT is a Perl module to convert Oracle's NLS_DATE_FORMAT string into a strptime format string, or the reverse.
converters/Convert-PEM-0.08 (Score: 0.17956966)
Read/write access to ASN.1-encoded PEM files with optional encryption
This is Convert::PEM, a module implementing read/write access to ASN.1-encoded PEM files (with optional encryption).
converters/JSON-2.90 (Score: 0.17956966)
Perl extension to convert to JSON (JavaScript Object Notation)
Perl extension interface to convert to JSON (JavaScript Object Notation).
converters/Convert-Recode-1.04 (Score: 0.17956966)
Front end to the GNU recode program
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.
converters/Convert-TNEF-0.18 (Score: 0.17956966)
Perl module to read TNEF files
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.
converters/Convert-UU-0.52.01 (Score: 0.17956966)
Perl5 module for uuencode and uudecode
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.