tr

tr/// The transliteration operator. Same as y///. See Quote-Like Operators in perlop.

getservbyport

getservbyport PORT,PROTO

setpwent

setpwent

endservent

endservent These routines are the same as their counterparts in the system C library. In list context, the return values from the various get routines are as follows: # 0 1 2 3 4 ( $name, $passwd, $gid, $members ) = getgr* ( $name, $aliases, $addrtype, $net ) = getnet* ( $name, $aliases, $port, $proto ) = getserv* ( $name, $aliases, $proto ) = getproto* ( $name, $aliases, $addrtype, $length, @addrs ) = getho

perlpolicy - Various and sundry policies and commitments related to the Perl core

NAME DESCRIPTION GOVERNANCEPerl 5 Porters MAINTENANCE AND SUPPORT BACKWARD COMPATIBILITY AND DEPRECATIONTerminology MAINTENANCE BRANCHESGetting changes into a maint branch CONTRIBUTED MODULESA Social Contract about Artistic Control DOCUMENTATION STANDARDS OF CONDUCT CREDITS NAME perlpolicy - Various and sundry policies and commitments related to the Perl core DESCRIPTION This document is the master document which records all written policies about how the Perl 5 Porters collectively devel

sqrt

sqrt EXPR sqrt Return the positive square root of EXPR. If EXPR is omitted, uses $_ . Works only for non-negative operands unless you've loaded the Math::Complex module. use Math::Complex; print sqrt(-4); # prints 2i

Text::Tabs - expand and unexpand tabs like unix expand(1) and unexpand(1)

NAME SYNOPSIS DESCRIPTION EXPORTS EXAMPLE SUBVERSION BUGS LICENSE NAME Text::Tabs - expand and unexpand tabs like unix expand(1) and unexpand(1) SYNOPSIS use Text::Tabs; $tabstop = 4; # default = 8 @lines_without_tabs = expand(@lines_with_tabs); @lines_with_tabs = unexpand(@lines_without_tabs); DESCRIPTION Text::Tabs does most of what the unix utilities expand(1) and unexpand(1) do. Given a line with tabs in it, expand replaces those tabs with the appropriate number of spaces. Given a line

Encode::Encoding - Encode Implementation Base Class

NAME SYNOPSIS DESCRIPTIONMethods you should implement Other methods defined in Encode::Encodings Example: Encode::ROT13 Why the heck Encode API is different?Compiled Encodings SEE ALSO NAME Encode::Encoding - Encode Implementation Base Class SYNOPSIS package Encode::MyEncoding; use parent qw(Encode::Encoding); __PACKAGE__->Define(qw(myCanonical myAlias)); DESCRIPTION As mentioned in Encode, encodings are (in the current implementation at least) defined as objects. The mapping of encod

MIME::Base64 - Encoding and decoding of base64 strings

NAME SYNOPSIS DESCRIPTION EXAMPLES COPYRIGHT SEE ALSO NAME MIME::Base64 - Encoding and decoding of base64 strings SYNOPSIS use MIME::Base64; $encoded = encode_base64('Aladdin:open sesame'); $decoded = decode_base64($encoded); DESCRIPTION This module provides functions to encode and decode strings into and from the base64 encoding specified in RFC 2045 - MIME (Multipurpose Internet Mail Extensions). The base64 encoding is designed to represent arbitrary sequences of octets in a form that nee

Locale::Currency - standard codes for currency identification

NAME SYNOPSIS DESCRIPTION SUPPORTED CODE SETS ROUTINES SEE ALSO AUTHOR COPYRIGHT NAME Locale::Currency - standard codes for currency identification SYNOPSIS use Locale::Currency; $curr = code2currency('usd'); # $curr gets 'US Dollar' $code = currency2code('Euro'); # $code gets 'eur' @codes = all_currency_codes(); @names = all_currency_names(); DESCRIPTION The Locale::Currency module provides access to standard codes used for identifying currencies and funds, such as those define