MAN page from Old RedHat 5.X perl-5.004-4.i386.rpm
locale
Section: Perl Programmers Reference Guide (3)
Updated: perl 5.004, patch 04
Index NAME
locale - Perl pragma to use and avoid POSIX locales for built-in operations
SYNOPSIS
@x = sort @y; # ASCII sorting order { use locale; @x = sort @y; # Locale-defined sorting order } @x = sort @y; # ASCII sorting order again DESCRIPTION
This pragma tells the compiler to enable (or disable) the use of POSIXlocales for built-in operations (LC_CTYPE for regular expressions, andLC_COLLATE for string comparison). Each ``use locale'' or ``no locale''affects statements to the end of the enclosing BLOCK.
Index
- NAME
- SYNOPSIS
- DESCRIPTION
This document was created byman2html,using the manual pages.