home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _dec43c6adfb033f031383075c57d8da6 < prev    next >
Text File  |  2000-03-23  |  2KB  |  67 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>locale - Perl pragma to use and avoid POSIX locales for built-in operations</TITLE>
  5. <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> locale - Perl pragma to use and avoid POSIX locales for built-in operations</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25. </UL>
  26. <!-- INDEX END -->
  27.  
  28. <HR>
  29. <P>
  30. <H1><A NAME="name">NAME</A></H1>
  31. <P>locale - Perl pragma to use and avoid POSIX locales for built-in operations</P>
  32. <P>
  33. <HR>
  34. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  35. <UL>
  36. <LI>Linux</LI>
  37. <LI>Solaris</LI>
  38. <LI>Windows</LI>
  39. </UL>
  40. <HR>
  41. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  42. <PRE>
  43.     @x = sort @y;       # ASCII sorting order
  44.     {
  45.         use locale;
  46.         @x = sort @y;   # Locale-defined sorting order
  47.     }
  48.     @x = sort @y;       # ASCII sorting order again</PRE>
  49. <P>
  50. <HR>
  51. <H1><A NAME="description">DESCRIPTION</A></H1>
  52. <P>This pragma tells the compiler to enable (or disable) the use of POSIX
  53. locales for built-in operations (LC_CTYPE for regular expressions, and
  54. LC_COLLATE for string comparison).  Each ``use locale'' or ``no locale''
  55. affects statements to the end of the enclosing BLOCK.</P>
  56. <P>See <A HREF="../lib/Pod/perllocale.html">the perllocale manpage</A> for more detailed information on how Perl supports
  57. locales.</P>
  58. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  59. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  60. <STRONG><P CLASS=block> locale - Perl pragma to use and avoid POSIX locales for built-in operations</P></STRONG>
  61. </TD></TR>
  62. </TABLE>
  63.  
  64. </BODY>
  65.  
  66. </HTML>
  67.