perluniintro - Perl Unicode introduction

NAME DESCRIPTIONUnicode Perl's Unicode Support Perl's Unicode Model Unicode and EBCDIC Creating Unicode Handling Unicode Legacy Encodings Unicode I/O Displaying Unicode As Text Special Cases Advanced Topics Miscellaneous Questions With Answers Hexadecimal Notation Further Resources UNICODE IN OLDER PERLS SEE ALSO ACKNOWLEDGMENTS AUTHOR, COPYRIGHT, AND LICENSE NAME perluniintro - Perl Unicode introduction DESCRIPTION This document gives a general idea of Unicode and how to use Unicode in Per

perlunifaq - Perl Unicode FAQ

NAME Q and Aperlunitut isn't really a Unicode tutorial, is it? What character encodings does Perl support? Which version of perl should I use? What about binary data, like images? When should I decode or encode? What if I don't decode? What if I don't encode? Is there a way to automatically decode or encode? What if I don't know which encoding was used? Can I use Unicode in my Perl sources? Data::Dumper doesn't restore the UTF8 flag; is it broken? Why do regex character classes sometimes match

perlunicook - cookbookish examples of handling Unicode in Perl

NAME DESCRIPTION EXAMPLES? 0: Standard preamble ? 1: Generic Unicode-savvy filter ? 2: Fine-tuning Unicode warnings ? 3: Declare source in utf8 for identifiers and literals ? 4: Characters and their numbers ? 5: Unicode literals by character number ? 6: Get character name by number ? 7: Get character number by name ? 8: Unicode named characters ? 9: Unicode named sequences ? 10: Custom named characters ? 11: Names of CJK codepoints ? 12: Explicit encode/decode ? 13: Decode program arguments as

perlunicode - Unicode support in Perl

NAME DESCRIPTIONImportant Caveats Byte and Character Semantics ASCII Rules versus Unicode Rules Extended Grapheme Clusters (Logical characters) Unicode Character Properties User-Defined Character Properties User-Defined Case Mappings (for serious hackers only) Character Encodings for Input and Output Unicode Regular Expression Support Level Unicode Encodings Noncharacter code points Beyond Unicode code points Security Implications of Unicode Unicode in Perl on EBCDIC Locales When Unicode Does

perltru64 - Perl version 5 on Tru64 (formerly known as Digital UNIX formerly known as DEC OSF/1) systems

NAME DESCRIPTIONCompiling Perl 5 on Tru64 Using Large Files with Perl on Tru64 Threaded Perl on Tru64 Long Doubles on Tru64 DB_File tests failing on Tru64 64-bit Perl on Tru64 Warnings about floating-point overflow when compiling Perl on Tru64 Testing Perl on Tru64 ext/ODBM_File/odbm Test Failing With Static Builds Perl Fails Because Of Unresolved Symbol sockatmark read_cur_obj_info: bad file magic number AUTHOR NAME perltru64 - Perl version 5 on Tru64 (formerly known as Digital UNIX former

perltrap - Perl traps for the unwary

NAME DESCRIPTIONAwk Traps C/C++ Traps JavaScript Traps Sed Traps Shell Traps Perl Traps NAME perltrap - Perl traps for the unwary DESCRIPTION The biggest trap of all is forgetting to use warnings or use the -w switch; see warnings and perlrun. The second biggest trap is not making your entire program runnable under use strict . The third biggest trap is not reading the list of changes in this version of Perl; see perldelta. Awk Traps Accustomed awk users should take special note of the foll

perltie - how to hide an object class in a simple variable

NAME SYNOPSIS DESCRIPTIONTying Scalars Tying Arrays Tying Hashes Tying FileHandles UNTIE this The untie Gotcha SEE ALSO BUGS AUTHOR NAME perltie - how to hide an object class in a simple variable SYNOPSIS tie VARIABLE, CLASSNAME, LIST $object = tied VARIABLE untie VARIABLE DESCRIPTION Prior to release 5.0 of Perl, a programmer could use dbmopen() to connect an on-disk database in the standard Unix dbm(3x) format magically to a %HASH in their program. However, their Perl was eithe

perltooc - Links to information on object-oriented programming in Perl

NAME DESCRIPTION NAME perltooc - Links to information on object-oriented programming in Perl DESCRIPTION For information on OO programming with Perl, please see perlootut and perlobj. (The above documents supersede the tutorial that was formerly here in perltooc.)

perltoot - Links to information on object-oriented programming in Perl

NAME DESCRIPTION NAME perltoot - Links to information on object-oriented programming in Perl DESCRIPTION For information on OO programming with Perl, please see perlootut and perlobj. (The above documents supersede the tutorial that was formerly here in perltoot.)

perlthrtut - Tutorial on threads in Perl

NAME DESCRIPTION What Is A Thread Anyway? Threaded Program ModelsBoss/Worker Work Crew Pipeline What kind of threads are Perl threads? Thread-Safe Modules Thread BasicsBasic Thread Support A Note about the Examples Creating Threads Waiting For A Thread To Exit Ignoring A Thread Process and Thread Termination Threads And DataShared And Unshared Data Thread Pitfalls: Races Synchronization and controlControlling access: lock() A Thread Pitfall: Deadlocks Queues: Passing Data Around Semaphor