Encode::KR - Korean Encodings

NAME SYNOPSIS DESCRIPTION BUGS SEE ALSO NAME Encode::KR - Korean Encodings SYNOPSIS use Encode qw/encode decode/; $euc_kr = encode("euc-kr", $utf8); # loads Encode::KR implicitly $utf8 = decode("euc-kr", $euc_kr); # ditto DESCRIPTION This module implements Korean charset encodings. Encodings supported are as follows. Canonical Alias Description -------------------------------------------------------------------- euc-kr /\beuc.*kr$/i EUC (Extended Unix Character) /\bkr.*e

index

index STR,SUBSTR,POSITION index STR,SUBSTR The index function searches for one string within another, but without the wildcard-like behavior of a full regular-expression pattern match. It returns the position of the first occurrence of SUBSTR in STR at or after POSITION. If POSITION is omitted, starts searching from the beginning of the string. POSITION before the beginning of the string or after its end is treated as if it were the beginning or the end, respectively. POSITION and the return va

reverse

reverse LIST In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of LIST and returns a string value with all characters in the opposite order. print join(", ", reverse "world", "Hello"); # Hello, world print scalar reverse "dlrow ,", "olleH"; # Hello, world Used without arguments in scalar context, reverse() reverses $_ . $_ = "dlrow ,olleH"; print reverse; # No output, list con

CPAN::Nox - Wrapper around CPAN.pm without using any XS module

NAME SYNOPSIS DESCRIPTION LICENSE SEE ALSO NAME CPAN::Nox - Wrapper around CPAN.pm without using any XS module SYNOPSIS Interactive mode: perl -MCPAN::Nox -e shell; DESCRIPTION This package has the same functionality as CPAN.pm, but tries to prevent the usage of compiled extensions during its own execution. Its primary purpose is a rescue in case you upgraded perl and broke binary compatibility somehow. LICENSE This program is free software; you can redistribute it and/or modify it under the

Test::Builder::Tester::Color - turn on colour in Test::Builder::Tester

NAME SYNOPSIS DESCRIPTION AUTHOR BUGS SEE ALSO NAME Test::Builder::Tester::Color - turn on colour in Test::Builder::Tester SYNOPSIS When running a test script perl -MTest::Builder::Tester::Color test.t DESCRIPTION Importing this module causes the subroutine color in Test::Builder::Tester to be called with a true value causing colour highlighting to be turned on in debug output. The sole purpose of this module is to enable colour highlighting from the command line. AUTHOR Copyright Mark Fo

perlhacktut - Walk through the creation of a simple C code patch

NAME DESCRIPTION EXAMPLE OF A SIMPLE PATCHWriting the patch Testing the patch Documenting the patch Submit AUTHOR NAME perlhacktut - Walk through the creation of a simple C code patch DESCRIPTION This document takes you through a simple patch example. If you haven't read perlhack yet, go do that first! You might also want to read through perlsource too. Once you're done here, check out perlhacktips next. EXAMPLE OF A SIMPLE PATCH Let's take a simple patch from start to finish. Here's someth

$EVAL_ERROR

$EVAL_ERROR

$PROGRAM_NAME

$PROGRAM_NAME

piconv -- iconv(1), reinvented in perl

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME piconv -- iconv(1), reinvented in perl SYNOPSIS piconv [-f from_encoding] [-t to_encoding] [-p|--perlqq|--htmlcref|--xmlcref] [-C N|-c] [-D] [-S scheme] [-s string|file...] piconv -l piconv -r encoding_alias piconv -h DESCRIPTION piconv is perl version of iconv, a character encoding converter widely available for various Unixen today. This script was primarily a technology demonstrator for Perl 5.8.0, but you can use piconv in the place o

perlfaq - frequently asked questions about Perl

NAME VERSION DESCRIPTIONWhere to find the perlfaq How to use the perlfaq How to contribute to the perlfaq What if my question isn't answered in the FAQ? TABLE OF CONTENTS THE QUESTIONSthe perlfaq1 manpage: General Questions About Perl the perlfaq2 manpage: Obtaining and Learning about Perl the perlfaq3 manpage: Programming Tools the perlfaq4 manpage: Data Manipulation the perlfaq5 manpage: Files and Formats the perlfaq6 manpage: Regular Expressions the perlfaq7 manpage: General Perl Language