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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlfaq4 - Data Manipulation</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlfaq4 - Data Manipulation</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <LI><A HREF="#data: numbers">Data: Numbers</A></LI>
  23.     <UL>
  24.  
  25.         <LI><A HREF="#why am i getting long decimals (eg, 19.9499999999999) instead of the numbers i should be getting (eg, 19.95)">Why am I getting long decimals (eg, 19.9499999999999) instead of the numbers I should be getting (eg, 19.95)?</A></LI>
  26.         <LI><A HREF="#why isn't my octal data interpreted correctly">Why isn't my octal data interpreted correctly?</A></LI>
  27.         <LI><A HREF="#does perl have a round() function what about ceil() and floor() trig functions">Does Perl have a <CODE>round()</CODE> function?  What about <CODE>ceil()</CODE> and floor()?  Trig functions?</A></LI>
  28.         <LI><A HREF="#how do i convert bits into ints">How do I convert bits into ints?</A></LI>
  29.         <LI><A HREF="#why doesn't & work the way i want it to">Why doesn't & work the way I want it to?</A></LI>
  30.         <LI><A HREF="#how do i multiply matrices">How do I multiply matrices?</A></LI>
  31.         <LI><A HREF="#how do i perform an operation on a series of integers">How do I perform an operation on a series of integers?</A></LI>
  32.         <LI><A HREF="#how can i output roman numerals">How can I output Roman numerals?</A></LI>
  33.         <LI><A HREF="#why aren't my random numbers random">Why aren't my random numbers random?</A></LI>
  34.     </UL>
  35.  
  36.     <LI><A HREF="#data: dates">Data: Dates</A></LI>
  37.     <UL>
  38.  
  39.         <LI><A HREF="#how do i find the weekoftheyear/dayoftheyear">How do I find the week-of-the-year/day-of-the-year?</A></LI>
  40.         <LI><A HREF="#how do i find the current century or millennium">How do I find the current century or millennium?</A></LI>
  41.         <LI><A HREF="#how can i compare two dates and find the difference">How can I compare two dates and find the difference?</A></LI>
  42.         <LI><A HREF="#how can i take a string and turn it into epoch seconds">How can I take a string and turn it into epoch seconds?</A></LI>
  43.         <LI><A HREF="#how can i find the julian day">How can I find the Julian Day?</A></LI>
  44.         <LI><A HREF="#how do i find yesterday's date">How do I find yesterday's date?</A></LI>
  45.         <LI><A HREF="#does perl have a year 2000 problem is perl y2k compliant">Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?</A></LI>
  46.     </UL>
  47.  
  48.     <LI><A HREF="#data: strings">Data: Strings</A></LI>
  49.     <UL>
  50.  
  51.         <LI><A HREF="#how do i validate input">How do I validate input?</A></LI>
  52.         <LI><A HREF="#how do i unescape a string">How do I unescape a string?</A></LI>
  53.         <LI><A HREF="#how do i remove consecutive pairs of characters">How do I remove consecutive pairs of characters?</A></LI>
  54.         <LI><A HREF="#how do i expand function calls in a string">How do I expand function calls in a string?</A></LI>
  55.         <LI><A HREF="#how do i find matching/nesting anything">How do I find matching/nesting anything?</A></LI>
  56.         <LI><A HREF="#how do i reverse a string">How do I reverse a string?</A></LI>
  57.         <LI><A HREF="#how do i expand tabs in a string">How do I expand tabs in a string?</A></LI>
  58.         <LI><A HREF="#how do i reformat a paragraph">How do I reformat a paragraph?</A></LI>
  59.         <LI><A HREF="#how can i access/change the first n letters of a string">How can I access/change the first N letters of a string?</A></LI>
  60.         <LI><A HREF="#how do i change the nth occurrence of something">How do I change the Nth occurrence of something?</A></LI>
  61.         <LI><A HREF="#how can i count the number of occurrences of a substring within a string">How can I count the number of occurrences of a substring within a string?</A></LI>
  62.         <LI><A HREF="#how do i capitalize all the words on one line">How do I capitalize all the words on one line?</A></LI>
  63.         <LI><A HREF="#how can i split a [character] delimited string except when inside">How can I split a [character] delimited string except when inside</A></LI>
  64.         <LI><A HREF="#how do i strip blank space from the beginning/end of a string">How do I strip blank space from the beginning/end of a string?</A></LI>
  65.         <LI><A HREF="#how do i pad a string with blanks or pad a number with zeroes">How do I pad a string with blanks or pad a number with zeroes?</A></LI>
  66.         <LI><A HREF="#how do i extract selected columns from a string">How do I extract selected columns from a string?</A></LI>
  67.         <LI><A HREF="#how do i find the soundex value of a string">How do I find the soundex value of a string?</A></LI>
  68.         <LI><A HREF="#how can i expand variables in text strings">How can I expand variables in text strings?</A></LI>
  69.         <LI><A HREF="#what's wrong with always quoting $vars">What's wrong with always quoting ``$vars''?</A></LI>
  70.         <LI><A HREF="#why don't my <<here documents work">Why don't my <<HERE documents work?</A></LI>
  71.     </UL>
  72.  
  73.     <LI><A HREF="#data: arrays">Data: Arrays</A></LI>
  74.     <UL>
  75.  
  76.         <LI><A HREF="#what is the difference between a list and an array">What is the difference between a list and an array?</A></LI>
  77.         <LI><A HREF="#what is the difference between $array[1] and @array[1]">What is the difference between $array[1] and @array[1]?</A></LI>
  78.         <LI><A HREF="#how can i remove duplicate elements from a list or array">How can I remove duplicate elements from a list or array?</A></LI>
  79.         <LI><A HREF="#how can i tell whether a list or array contains a certain element">How can I tell whether a list or array contains a certain element?</A></LI>
  80.         <LI><A HREF="#how do i compute the difference of two arrays how do i compute the intersection of two arrays">How do I compute the difference of two arrays?  How do I compute the intersection of two arrays?</A></LI>
  81.         <LI><A HREF="#how do i test whether two arrays or hashes are equal">How do I test whether two arrays or hashes are equal?</A></LI>
  82.         <LI><A HREF="#how do i find the first array element for which a condition is true">How do I find the first array element for which a condition is true?</A></LI>
  83.         <LI><A HREF="#how do i handle linked lists">How do I handle linked lists?</A></LI>
  84.         <LI><A HREF="#how do i handle circular lists">How do I handle circular lists?</A></LI>
  85.         <LI><A HREF="#how do i shuffle an array randomly">How do I shuffle an array randomly?</A></LI>
  86.         <LI><A HREF="#how do i process/modify each element of an array">How do I process/modify each element of an array?</A></LI>
  87.         <LI><A HREF="#how do i select a random element from an array">How do I select a random element from an array?</A></LI>
  88.         <LI><A HREF="#how do i permute n elements of a list">How do I permute N elements of a list?</A></LI>
  89.         <LI><A HREF="#how do i sort an array by (anything)">How do I sort an array by (anything)?</A></LI>
  90.         <LI><A HREF="#how do i manipulate arrays of bits">How do I manipulate arrays of bits?</A></LI>
  91.         <LI><A HREF="#why does defined() return true on empty arrays and hashes">Why does <A HREF="../../lib/Pod/perlfunc.html#item_defined"><CODE>defined()</CODE></A> return true on empty arrays and hashes?</A></LI>
  92.     </UL>
  93.  
  94.     <LI><A HREF="#data: hashes (associative arrays)">Data: Hashes (Associative Arrays)</A></LI>
  95.     <UL>
  96.  
  97.         <LI><A HREF="#how do i process an entire hash">How do I process an entire hash?</A></LI>
  98.         <LI><A HREF="#what happens if i add or remove keys from a hash while iterating over it">What happens if I add or remove keys from a hash while iterating over it?</A></LI>
  99.         <LI><A HREF="#how do i look up a hash element by value">How do I look up a hash element by value?</A></LI>
  100.         <LI><A HREF="#how can i know how many entries are in a hash">How can I know how many entries are in a hash?</A></LI>
  101.         <LI><A HREF="#how do i sort a hash (optionally by value instead of key)">How do I sort a hash (optionally by value instead of key)?</A></LI>
  102.         <LI><A HREF="#how can i always keep my hash sorted">How can I always keep my hash sorted?</A></LI>
  103.         <LI><A HREF="#what's the difference between delete and undef with hashes">What's the difference between ``delete'' and ``undef'' with hashes?</A></LI>
  104.         <LI><A HREF="#why don't my tied hashes make the defined/exists distinction">Why don't my tied hashes make the defined/exists distinction?</A></LI>
  105.         <LI><A HREF="#how do i reset an each() operation partway through">How do I reset an <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A> operation part-way through?</A></LI>
  106.         <LI><A HREF="#how can i get the unique keys from two hashes">How can I get the unique keys from two hashes?</A></LI>
  107.         <LI><A HREF="#how can i store a multidimensional array in a dbm file">How can I store a multidimensional array in a DBM file?</A></LI>
  108.         <LI><A HREF="#how can i make my hash remember the order i put elements into it">How can I make my hash remember the order I put elements into it?</A></LI>
  109.         <LI><A HREF="#why does passing a subroutine an undefined element in a hash create it">Why does passing a subroutine an undefined element in a hash create it?</A></LI>
  110.         <LI><A HREF="#how can i make the perl equivalent of a c structure/c++ class/hash or array of hashes or arrays">How can I make the Perl equivalent of a C structure/C++ class/hash or array of hashes or arrays?</A></LI>
  111.         <LI><A HREF="#how can i use a reference as a hash key">How can I use a reference as a hash key?</A></LI>
  112.     </UL>
  113.  
  114.     <LI><A HREF="#data: misc">Data: Misc</A></LI>
  115.     <UL>
  116.  
  117.         <LI><A HREF="#how do i handle binary data correctly">How do I handle binary data correctly?</A></LI>
  118.         <LI><A HREF="#how do i determine whether a scalar is a number/whole/integer/float">How do I determine whether a scalar is a number/whole/integer/float?</A></LI>
  119.         <LI><A HREF="#how do i keep persistent data across program calls">How do I keep persistent data across program calls?</A></LI>
  120.         <LI><A HREF="#how do i print out or copy a recursive data structure">How do I print out or copy a recursive data structure?</A></LI>
  121.         <LI><A HREF="#how do i define methods for every class/object">How do I define methods for every class/object?</A></LI>
  122.         <LI><A HREF="#how do i verify a credit card checksum">How do I verify a credit card checksum?</A></LI>
  123.         <LI><A HREF="#how do i pack arrays of doubles or floats for xs code">How do I pack arrays of doubles or floats for XS code?</A></LI>
  124.     </UL>
  125.  
  126.     <LI><A HREF="#author and copyright">AUTHOR AND COPYRIGHT</A></LI>
  127. </UL>
  128. <!-- INDEX END -->
  129.  
  130. <HR>
  131. <P>
  132. <H1><A NAME="name">NAME</A></H1>
  133. <P>perlfaq4 - Data Manipulation ($Revision: 1.49 $, $Date: 1999/05/23 20:37:49 $)</P>
  134. <P>
  135. <HR>
  136. <H1><A NAME="description">DESCRIPTION</A></H1>
  137. <P>The section of the FAQ answers question related to the manipulation
  138. of data as numbers, dates, strings, arrays, hashes, and miscellaneous
  139. data issues.</P>
  140. <P>
  141. <HR>
  142. <H1><A NAME="data: numbers">Data: Numbers</A></H1>
  143. <P>
  144. <H2><A NAME="why am i getting long decimals (eg, 19.9499999999999) instead of the numbers i should be getting (eg, 19.95)">Why am I getting long decimals (eg, 19.9499999999999) instead of the numbers I should be getting (eg, 19.95)?</A></H2>
  145. <P>The infinite set that a mathematician thinks of as the real numbers can
  146. only be approximate on a computer, since the computer only has a finite
  147. number of bits to store an infinite number of, um, numbers.</P>
  148. <P>Internally, your computer represents floating-point numbers in binary.
  149. Floating-point numbers read in from a file or appearing as literals
  150. in your program are converted from their decimal floating-point
  151. representation (eg, 19.95) to the internal binary representation.</P>
  152. <P>However, 19.95 can't be precisely represented as a binary
  153. floating-point number, just like 1/3 can't be exactly represented as a
  154. decimal floating-point number.  The computer's binary representation
  155. of 19.95, therefore, isn't exactly 19.95.</P>
  156. <P>When a floating-point number gets printed, the binary floating-point
  157. representation is converted back to decimal.  These decimal numbers
  158. are displayed in either the format you specify with printf(), or the
  159. current output format for numbers (see <A HREF="../../lib/Pod/perlvar.html#$#">$# in the perlvar manpage</A> if you use
  160. print.  <CODE>$#</CODE> has a different default value in Perl5 than it did in
  161. Perl4.  Changing <CODE>$#</CODE> yourself is deprecated.)</P>
  162. <P>This affects <STRONG>all</STRONG> computer languages that represent decimal
  163. floating-point numbers in binary, not just Perl.  Perl provides
  164. arbitrary-precision decimal numbers with the Math::BigFloat module
  165. (part of the standard Perl distribution), but mathematical operations
  166. are consequently slower.</P>
  167. <P>To get rid of the superfluous digits, just use a format (eg,
  168. <A HREF="../../lib/Pod/perlfunc.html#item_printf"><CODE>printf("%.2f", 19.95)</CODE></A>) to get the required precision.
  169. See <A HREF="../../lib/Pod/perlop.html#floatingpoint arithmetic">Floating-point Arithmetic in the perlop manpage</A>.</P>
  170. <P>
  171. <H2><A NAME="why isn't my octal data interpreted correctly">Why isn't my octal data interpreted correctly?</A></H2>
  172. <P>Perl only understands octal and hex numbers as such when they occur
  173. as literals in your program.  If they are read in from somewhere and
  174. assigned, no automatic conversion takes place.  You must explicitly
  175. use <A HREF="../../lib/Pod/perlfunc.html#item_oct"><CODE>oct()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_hex"><CODE>hex()</CODE></A> if you want the values converted.  <A HREF="../../lib/Pod/perlfunc.html#item_oct"><CODE>oct()</CODE></A> interprets
  176. both hex (``0x350'') numbers and octal ones (``0350'' or even without the
  177. leading ``0'', like ``377''), while <A HREF="../../lib/Pod/perlfunc.html#item_hex"><CODE>hex()</CODE></A> only converts hexadecimal ones,
  178. with or without a leading ``0x'', like ``0x255'', ``3A'', ``ff'', or ``deadbeef''.</P>
  179. <P>This problem shows up most often when people try using chmod(), mkdir(),
  180. umask(), or sysopen(), which all want permissions in octal.</P>
  181. <PRE>
  182.     chmod(644,  $file); # WRONG -- perl -w catches this
  183.     chmod(0644, $file); # right</PRE>
  184. <P>
  185. <H2><A NAME="does perl have a round() function what about ceil() and floor() trig functions">Does Perl have a <CODE>round()</CODE> function?  What about <CODE>ceil()</CODE> and floor()?  Trig functions?</A></H2>
  186. <P>Remember that <A HREF="../../lib/Pod/perlfunc.html#item_int"><CODE>int()</CODE></A> merely truncates toward 0.  For rounding to a
  187. certain number of digits, <A HREF="../../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_printf"><CODE>printf()</CODE></A> is usually the easiest
  188. route.</P>
  189. <PRE>
  190.     printf("%.3f", 3.1415926535);       # prints 3.142</PRE>
  191. <P>The POSIX module (part of the standard Perl distribution) implements
  192. ceil(), floor(), and a number of other mathematical and trigonometric
  193. functions.</P>
  194. <PRE>
  195.     use POSIX;
  196.     $ceil   = ceil(3.5);                        # 4
  197.     $floor  = floor(3.5);                       # 3</PRE>
  198. <P>In 5.000 to 5.003 Perls, trigonometry was done in the Math::Complex
  199. module.  With 5.004, the Math::Trig module (part of the standard Perl
  200. distribution) implements the trigonometric functions. Internally it
  201. uses the Math::Complex module and some functions can break out from
  202. the real axis into the complex plane, for example the inverse sine of
  203. 2.</P>
  204. <P>Rounding in financial applications can have serious implications, and
  205. the rounding method used should be specified precisely.  In these
  206. cases, it probably pays not to trust whichever system rounding is
  207. being used by Perl, but to instead implement the rounding function you
  208. need yourself.</P>
  209. <P>To see why, notice how you'll still have an issue on half-way-point
  210. alternation:</P>
  211. <PRE>
  212.     for ($i = 0; $i < 1.01; $i += 0.05) { printf "%.1f ",$i}</PRE>
  213. <PRE>
  214.     0.0 0.1 0.1 0.2 0.2 0.2 0.3 0.3 0.4 0.4 0.5 0.5 0.6 0.7 0.7 
  215.     0.8 0.8 0.9 0.9 1.0 1.0</PRE>
  216. <P>Don't blame Perl.  It's the same as in C.  IEEE says we have to do this.
  217. Perl numbers whose absolute values are integers under 2**31 (on 32 bit
  218. machines) will work pretty much like mathematical integers.  Other numbers
  219. are not guaranteed.</P>
  220. <P>
  221. <H2><A NAME="how do i convert bits into ints">How do I convert bits into ints?</A></H2>
  222. <P>To turn a string of 1s and 0s like <CODE>10110110</CODE> into a scalar containing
  223. its binary value, use the <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack()</CODE></A> functions (documented in
  224. <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A> and <A HREF="../../lib/Pod/perlfunc.html#unpack">unpack in the perlfunc manpage</A>):</P>
  225. <PRE>
  226.     $decimal = unpack('c', pack('B8', '10110110'));</PRE>
  227. <P>This packs the string <CODE>10110110</CODE> into an eight bit binary structure.
  228. This is then unpacked as a character, which returns its ordinal value.</P>
  229. <P>This does the same thing:</P>
  230. <PRE>
  231.     $decimal = ord(pack('B8', '10110110'));</PRE>
  232. <P>Here's an example of going the other way:</P>
  233. <PRE>
  234.     $binary_string = unpack('B*', "\x29");</PRE>
  235. <P>
  236. <H2><A NAME="why doesn't & work the way i want it to">Why doesn't & work the way I want it to?</A></H2>
  237. <P>The behavior of binary arithmetic operators depends on whether they're
  238. used on numbers or strings.  The operators treat a string as a series
  239. of bits and work with that (the string <CODE>"3"</CODE> is the bit pattern
  240. <CODE>00110011</CODE>).  The operators work with the binary form of a number
  241. (the number <CODE>3</CODE> is treated as the bit pattern <CODE>00000011</CODE>).</P>
  242. <P>So, saying <CODE>11 & 3</CODE> performs the ``and'' operation on numbers (yielding
  243. <CODE>1</CODE>).  Saying <CODE>"11" & "3"</CODE> performs the ``and'' operation on strings
  244. (yielding <CODE>"1"</CODE>).</P>
  245. <P>Most problems with <CODE>&</CODE> and <CODE>|</CODE> arise because the programmer thinks
  246. they have a number but really it's a string.  The rest arise because
  247. the programmer says:</P>
  248. <PRE>
  249.     if ("\020\020" & "\101\101") {
  250.         # ...
  251.     }</PRE>
  252. <P>but a string consisting of two null bytes (the result of <CODE>"\020\020"
  253. & "\101\101"</CODE>) is not a false value in Perl.  You need:</P>
  254. <PRE>
  255.     if ( ("\020\020" & "\101\101") !~ /[^\000]/) {
  256.         # ...
  257.     }</PRE>
  258. <P>
  259. <H2><A NAME="how do i multiply matrices">How do I multiply matrices?</A></H2>
  260. <P>Use the Math::Matrix or Math::MatrixReal modules (available from CPAN)
  261. or the PDL extension (also available from CPAN).</P>
  262. <P>
  263. <H2><A NAME="how do i perform an operation on a series of integers">How do I perform an operation on a series of integers?</A></H2>
  264. <P>To call a function on each element in an array, and collect the
  265. results, use:</P>
  266. <PRE>
  267.     @results = map { my_func($_) } @array;</PRE>
  268. <P>For example:</P>
  269. <PRE>
  270.     @triple = map { 3 * $_ } @single;</PRE>
  271. <P>To call a function on each element of an array, but ignore the
  272. results:</P>
  273. <PRE>
  274.     foreach $iterator (@array) {
  275.         some_func($iterator);
  276.     }</PRE>
  277. <P>To call a function on each integer in a (small) range, you <STRONG>can</STRONG> use:</P>
  278. <PRE>
  279.     @results = map { some_func($_) } (5 .. 25);</PRE>
  280. <P>but you should be aware that the <CODE>..</CODE> operator creates an array of
  281. all integers in the range.  This can take a lot of memory for large
  282. ranges.  Instead use:</P>
  283. <PRE>
  284.     @results = ();
  285.     for ($i=5; $i < 500_005; $i++) {
  286.         push(@results, some_func($i));
  287.     }</PRE>
  288. <P>This situation has been fixed in Perl5.005. Use of <CODE>..</CODE> in a <CODE>for</CODE>
  289. loop will iterate over the range, without creating the entire range.</P>
  290. <PRE>
  291.     for my $i (5 .. 500_005) {
  292.         push(@results, some_func($i));
  293.     }</PRE>
  294. <P>will not create a list of 500,000 integers.</P>
  295. <P>
  296. <H2><A NAME="how can i output roman numerals">How can I output Roman numerals?</A></H2>
  297. <P>Get the <A HREF="http://www.perl.com/CPAN/modules/by-module/Roman">http://www.perl.com/CPAN/modules/by-module/Roman</A> module.</P>
  298. <P>
  299. <H2><A NAME="why aren't my random numbers random">Why aren't my random numbers random?</A></H2>
  300. <P>If you're using a version of Perl before 5.004, you must call <A HREF="../../lib/Pod/perlfunc.html#item_srand"><CODE>srand</CODE></A>
  301. once at the start of your program to seed the random number generator.
  302. 5.004 and later automatically call <A HREF="../../lib/Pod/perlfunc.html#item_srand"><CODE>srand</CODE></A> at the beginning.  Don't
  303. call <A HREF="../../lib/Pod/perlfunc.html#item_srand"><CODE>srand</CODE></A> more than once--you make your numbers less random, rather
  304. than more.</P>
  305. <P>Computers are good at being predictable and bad at being random
  306. (despite appearances caused by bugs in your programs :-).
  307. <A HREF="http://www.perl.com/CPAN/doc/FMTEYEWTK/random,">http://www.perl.com/CPAN/doc/FMTEYEWTK/random,</A> courtesy of Tom
  308. Phoenix, talks more about this..  John von Neumann said, ``Anyone who
  309. attempts to generate random numbers by deterministic means is, of
  310. course, living in a state of sin.''</P>
  311. <P>If you want numbers that are more random than <A HREF="../../lib/Pod/perlfunc.html#item_rand"><CODE>rand</CODE></A> with <A HREF="../../lib/Pod/perlfunc.html#item_srand"><CODE>srand</CODE></A>
  312. provides, you should also check out the Math::TrulyRandom module from
  313. CPAN.  It uses the imperfections in your system's timer to generate
  314. random numbers, but this takes quite a while.  If you want a better
  315. pseudorandom generator than comes with your operating system, look at
  316. ``Numerical Recipes in C'' at <A HREF="http://www.nr.com/">http://www.nr.com/</A> .</P>
  317. <P>
  318. <HR>
  319. <H1><A NAME="data: dates">Data: Dates</A></H1>
  320. <P>
  321. <H2><A NAME="how do i find the weekoftheyear/dayoftheyear">How do I find the week-of-the-year/day-of-the-year?</A></H2>
  322. <P>The day of the year is in the array returned by <A HREF="../../lib/Pod/perlfunc.html#item_localtime"><CODE>localtime()</CODE></A> (see
  323. <A HREF="../../lib/Pod/perlfunc.html#localtime">localtime in the perlfunc manpage</A>):</P>
  324. <PRE>
  325.     $day_of_year = (localtime(time()))[7];</PRE>
  326. <P>or more legibly (in 5.004 or higher):</P>
  327. <PRE>
  328.     use Time::localtime;
  329.     $day_of_year = localtime(time())->yday;</PRE>
  330. <P>You can find the week of the year by dividing this by 7:</P>
  331. <PRE>
  332.     $week_of_year = int($day_of_year / 7);</PRE>
  333. <P>Of course, this believes that weeks start at zero.  The Date::Calc
  334. module from CPAN has a lot of date calculation functions, including
  335. day of the year, week of the year, and so on.   Note that not
  336. all businesses consider ``week 1'' to be the same; for example,
  337. American businesses often consider the first week with a Monday
  338. in it to be Work Week #1, despite ISO 8601, which considers
  339. WW1 to be the first week with a Thursday in it.</P>
  340. <P>
  341. <H2><A NAME="how do i find the current century or millennium">How do I find the current century or millennium?</A></H2>
  342. <P>Use the following simple functions:</P>
  343. <PRE>
  344.     sub get_century    { 
  345.         return int((((localtime(shift || time))[5] + 1999))/100);
  346.     } 
  347.     sub get_millennium { 
  348.         return 1+int((((localtime(shift || time))[5] + 1899))/1000);
  349.     }</PRE>
  350. <P>On some systems, you'll find that the POSIX module's <CODE>strftime()</CODE> function
  351. has been extended in a non-standard way to use a <CODE>%C</CODE> format, which they
  352. sometimes claim is the ``century''.  It isn't, because on most such systems,
  353. this is only the first two digits of the four-digit year, and thus cannot
  354. be used to reliably determine the current century or millennium.</P>
  355. <P>
  356. <H2><A NAME="how can i compare two dates and find the difference">How can I compare two dates and find the difference?</A></H2>
  357. <P>If you're storing your dates as epoch seconds then simply subtract one
  358. from the other.  If you've got a structured date (distinct year, day,
  359. month, hour, minute, seconds values), then for reasons of accessibility,
  360. simplicity, and efficiency, merely use either timelocal or timegm (from
  361. the Time::Local module in the standard distribution) to reduce structured
  362. dates to epoch seconds.  However, if you don't know the precise format of
  363. your dates, then you should probably use either of the Date::Manip and
  364. Date::Calc modules from CPAN before you go hacking up your own parsing
  365. routine to handle arbitrary date formats.</P>
  366. <P>
  367. <H2><A NAME="how can i take a string and turn it into epoch seconds">How can I take a string and turn it into epoch seconds?</A></H2>
  368. <P>If it's a regular enough string that it always has the same format,
  369. you can split it up and pass the parts to <CODE>timelocal</CODE> in the standard
  370. Time::Local module.  Otherwise, you should look into the Date::Calc
  371. and Date::Manip modules from CPAN.</P>
  372. <P>
  373. <H2><A NAME="how can i find the julian day">How can I find the Julian Day?</A></H2>
  374. <P>Use the Time::JulianDay module (part of the Time-modules bundle
  375. available from CPAN.)</P>
  376. <P>Before you immerse yourself too deeply in this, be sure to verify that it
  377. is the <EM>Julian</EM> Day you really want.  Are they really just interested in
  378. a way of getting serial days so that they can do date arithmetic?  If you
  379. are interested in performing date arithmetic, this can be done using
  380. either Date::Manip or Date::Calc, without converting to Julian Day first.</P>
  381. <P>There is too much confusion on this issue to cover in this FAQ, but the
  382. term is applied (correctly) to a calendar now supplanted by the Gregorian
  383. Calendar, with the Julian Calendar failing to adjust properly for leap
  384. years on centennial years (among other annoyances).  The term is also used
  385. (incorrectly) to mean: [1] days in the Gregorian Calendar; and [2] days
  386. since a particular starting time or `epoch', usually 1970 in the Unix
  387. world and 1980 in the MS-DOS/Windows world.  If you find that it is not
  388. the first meaning that you really want, then check out the Date::Manip
  389. and Date::Calc modules.  (Thanks to David Cassell for most of this text.)</P>
  390. <P>
  391. <H2><A NAME="how do i find yesterday's date">How do I find yesterday's date?</A></H2>
  392. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_time"><CODE>time()</CODE></A> function returns the current time in seconds since the
  393. epoch.  Take twenty-four hours off that:</P>
  394. <PRE>
  395.     $yesterday = time() - ( 24 * 60 * 60 );</PRE>
  396. <P>Then you can pass this to <A HREF="../../lib/Pod/perlfunc.html#item_localtime"><CODE>localtime()</CODE></A> and get the individual year,
  397. month, day, hour, minute, seconds values.</P>
  398. <P>Note very carefully that the code above assumes that your days are
  399. twenty-four hours each.  For most people, there are two days a year
  400. when they aren't: the switch to and from summer time throws this off.
  401. A solution to this issue is offered by Russ Allbery.</P>
  402. <PRE>
  403.     sub yesterday {
  404.         my $now  = defined $_[0] ? $_[0] : time;
  405.         my $then = $now - 60 * 60 * 24;
  406.         my $ndst = (localtime $now)[8] > 0;
  407.         my $tdst = (localtime $then)[8] > 0;
  408.         $then - ($tdst - $ndst) * 60 * 60;
  409.     }
  410.     # Should give you "this time yesterday" in seconds since epoch relative to
  411.     # the first argument or the current time if no argument is given and
  412.     # suitable for passing to localtime or whatever else you need to do with
  413.     # it.  $ndst is whether we're currently in daylight savings time; $tdst is
  414.     # whether the point 24 hours ago was in daylight savings time.  If $tdst
  415.     # and $ndst are the same, a boundary wasn't crossed, and the correction
  416.     # will subtract 0.  If $tdst is 1 and $ndst is 0, subtract an hour more
  417.     # from yesterday's time since we gained an extra hour while going off
  418.     # daylight savings time.  If $tdst is 0 and $ndst is 1, subtract a
  419.     # negative hour (add an hour) to yesterday's time since we lost an hour.
  420.     #
  421.     # All of this is because during those days when one switches off or onto
  422.     # DST, a "day" isn't 24 hours long; it's either 23 or 25.
  423.     #
  424.     # The explicit settings of $ndst and $tdst are necessary because localtime
  425.     # only says it returns the system tm struct, and the system tm struct at
  426.     # least on Solaris doesn't guarantee any particular positive value (like,
  427.     # say, 1) for isdst, just a positive value.  And that value can
  428.     # potentially be negative, if DST information isn't available (this sub
  429.     # just treats those cases like no DST).
  430.     #
  431.     # Note that between 2am and 3am on the day after the time zone switches
  432.     # off daylight savings time, the exact hour of "yesterday" corresponding
  433.     # to the current hour is not clearly defined.  Note also that if used
  434.     # between 2am and 3am the day after the change to daylight savings time,
  435.     # the result will be between 3am and 4am of the previous day; it's
  436.     # arguable whether this is correct.
  437.     #
  438.     # This sub does not attempt to deal with leap seconds (most things don't).
  439.     #
  440.     # Copyright relinquished 1999 by Russ Allbery <rra@stanford.edu>
  441.     # This code is in the public domain</PRE>
  442. <P>
  443. <H2><A NAME="does perl have a year 2000 problem is perl y2k compliant">Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?</A></H2>
  444. <P>Short answer: No, Perl does not have a Year 2000 problem.  Yes, Perl is
  445. Y2K compliant (whatever that means).  The programmers you've hired to
  446. use it, however, probably are not.</P>
  447. <P>Long answer: The question belies a true understanding of the issue.
  448. Perl is just as Y2K compliant as your pencil--no more, and no less.
  449. Can you use your pencil to write a non-Y2K-compliant memo?  Of course
  450. you can.  Is that the pencil's fault?  Of course it isn't.</P>
  451. <P>The date and time functions supplied with Perl (gmtime and localtime)
  452. supply adequate information to determine the year well beyond 2000
  453. (2038 is when trouble strikes for 32-bit machines).  The year returned
  454. by these functions when used in an array context is the year minus 1900.
  455. For years between 1910 and 1999 this <EM>happens</EM> to be a 2-digit decimal
  456. number. To avoid the year 2000 problem simply do not treat the year as
  457. a 2-digit number.  It isn't.</P>
  458. <P>When <A HREF="../../lib/Pod/perlfunc.html#item_gmtime"><CODE>gmtime()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_localtime"><CODE>localtime()</CODE></A> are used in scalar context they return
  459. a timestamp string that contains a fully-expanded year.  For example,
  460. <A HREF="../../lib/Pod/perlfunc.html#item_gmtime"><CODE>$timestamp = gmtime(1005613200)</CODE></A> sets $timestamp to ``Tue Nov 13 01:00:00
  461. 2001''.  There's no year 2000 problem here.</P>
  462. <P>That doesn't mean that Perl can't be used to create non-Y2K compliant
  463. programs.  It can.  But so can your pencil.  It's the fault of the user,
  464. not the language.  At the risk of inflaming the NRA: ``Perl doesn't
  465. break Y2K, people do.''  See <A HREF="http://language.perl.com/news/y2k.html">http://language.perl.com/news/y2k.html</A> for
  466. a longer exposition.</P>
  467. <P>
  468. <HR>
  469. <H1><A NAME="data: strings">Data: Strings</A></H1>
  470. <P>
  471. <H2><A NAME="how do i validate input">How do I validate input?</A></H2>
  472. <P>The answer to this question is usually a regular expression, perhaps
  473. with auxiliary logic.  See the more specific questions (numbers, mail
  474. addresses, etc.) for details.</P>
  475. <P>
  476. <H2><A NAME="how do i unescape a string">How do I unescape a string?</A></H2>
  477. <P>It depends just what you mean by ``escape''.  URL escapes are dealt
  478. with in <A HREF="../../lib/Pod/perlfaq9.html">the perlfaq9 manpage</A>.  Shell escapes with the backslash (<CODE>\</CODE>)
  479. character are removed with:</P>
  480. <PRE>
  481.     s/\\(.)/$1/g;</PRE>
  482. <P>This won't expand <CODE>"\n"</CODE> or <CODE>"\t"</CODE> or any other special escapes.</P>
  483. <P>
  484. <H2><A NAME="how do i remove consecutive pairs of characters">How do I remove consecutive pairs of characters?</A></H2>
  485. <P>To turn <CODE>"abbcccd"</CODE> into <CODE>"abccd"</CODE>:</P>
  486. <PRE>
  487.     s/(.)\1/$1/g;       # add /s to include newlines</PRE>
  488. <P>Here's a solution that turns ``abbcccd'' to ``abcd'':</P>
  489. <PRE>
  490.     y///cs;     # y == tr, but shorter :-)</PRE>
  491. <P>
  492. <H2><A NAME="how do i expand function calls in a string">How do I expand function calls in a string?</A></H2>
  493. <P>This is documented in <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.  In general, this is fraught with
  494. quoting and readability problems, but it is possible.  To interpolate
  495. a subroutine call (in list context) into a string:</P>
  496. <PRE>
  497.     print "My sub returned @{[mysub(1,2,3)]} that time.\n";</PRE>
  498. <P>If you prefer scalar context, similar chicanery is also useful for
  499. arbitrary expressions:</P>
  500. <PRE>
  501.     print "That yields ${\($n + 5)} widgets\n";</PRE>
  502. <P>Version 5.004 of Perl had a bug that gave list context to the
  503. expression in <CODE>${...}</CODE>, but this is fixed in version 5.005.</P>
  504. <P>See also ``How can I expand variables in text strings?'' in this
  505. section of the FAQ.</P>
  506. <P>
  507. <H2><A NAME="how do i find matching/nesting anything">How do I find matching/nesting anything?</A></H2>
  508. <P>This isn't something that can be done in one regular expression, no
  509. matter how complicated.  To find something between two single
  510. characters, a pattern like <CODE>/x([^x]*)x/</CODE> will get the intervening
  511. bits in $1. For multiple ones, then something more like
  512. <CODE>/alpha(.*?)omega/</CODE> would be needed.  But none of these deals with
  513. nested patterns, nor can they.  For that you'll have to write a
  514. parser.</P>
  515. <P>If you are serious about writing a parser, there are a number of
  516. modules or oddities that will make your life a lot easier.  There are
  517. the CPAN modules Parse::RecDescent, Parse::Yapp, and Text::Balanced;
  518. and the byacc program.</P>
  519. <P>One simple destructive, inside-out approach that you might try is to
  520. pull out the smallest nesting parts one at a time:</P>
  521. <PRE>
  522.     while (s/BEGIN((?:(?!BEGIN)(?!END).)*)END//gs) {
  523.         # do something with $1
  524.     }</PRE>
  525. <P>A more complicated and sneaky approach is to make Perl's regular
  526. expression engine do it for you.  This is courtesy Dean Inada, and
  527. rather has the nature of an Obfuscated Perl Contest entry, but it
  528. really does work:</P>
  529. <PRE>
  530.     # $_ contains the string to parse
  531.     # BEGIN and END are the opening and closing markers for the
  532.     # nested text.</PRE>
  533. <PRE>
  534.     @( = ('(','');
  535.     @) = (')','');
  536.     ($re=$_)=~s/((BEGIN)|(END)|.)/$)[!$3]\Q$1\E$([!$2]/gs;
  537.     @$ = (eval{/$re/},$@!~/unmatched/);
  538.     print join("\n",@$[0..$#$]) if( $$[-1] );</PRE>
  539. <P>
  540. <H2><A NAME="how do i reverse a string">How do I reverse a string?</A></H2>
  541. <P>Use <A HREF="../../lib/Pod/perlfunc.html#item_reverse"><CODE>reverse()</CODE></A> in scalar context, as documented in
  542. <A HREF="../../lib/Pod/perlfunc.html#reverse">reverse in the perlfunc manpage</A>.</P>
  543. <PRE>
  544.     $reversed = reverse $string;</PRE>
  545. <P>
  546. <H2><A NAME="how do i expand tabs in a string">How do I expand tabs in a string?</A></H2>
  547. <P>You can do it yourself:</P>
  548. <PRE>
  549.     1 while $string =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e;</PRE>
  550. <P>Or you can just use the Text::Tabs module (part of the standard Perl
  551. distribution).</P>
  552. <PRE>
  553.     use Text::Tabs;
  554.     @expanded_lines = expand(@lines_with_tabs);</PRE>
  555. <P>
  556. <H2><A NAME="how do i reformat a paragraph">How do I reformat a paragraph?</A></H2>
  557. <P>Use Text::Wrap (part of the standard Perl distribution):</P>
  558. <PRE>
  559.     use Text::Wrap;
  560.     print wrap("\t", '  ', @paragraphs);</PRE>
  561. <P>The paragraphs you give to Text::Wrap should not contain embedded
  562. newlines.  Text::Wrap doesn't justify the lines (flush-right).</P>
  563. <P>
  564. <H2><A NAME="how can i access/change the first n letters of a string">How can I access/change the first N letters of a string?</A></H2>
  565. <P>There are many ways.  If you just want to grab a copy, use
  566. substr():</P>
  567. <PRE>
  568.     $first_byte = substr($a, 0, 1);</PRE>
  569. <P>If you want to modify part of a string, the simplest way is often to
  570. use <A HREF="../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A> as an lvalue:</P>
  571. <PRE>
  572.     substr($a, 0, 3) = "Tom";</PRE>
  573. <P>Although those with a pattern matching kind of thought process will
  574. likely prefer:</P>
  575. <PRE>
  576.     $a =~ s/^.../Tom/;</PRE>
  577. <P>
  578. <H2><A NAME="how do i change the nth occurrence of something">How do I change the Nth occurrence of something?</A></H2>
  579. <P>You have to keep track of N yourself.  For example, let's say you want
  580. to change the fifth occurrence of <CODE>"whoever"</CODE> or <CODE>"whomever"</CODE> into
  581. <CODE>"whosoever"</CODE> or <CODE>"whomsoever"</CODE>, case insensitively.  These
  582. all assume that $_ contains the string to be altered.</P>
  583. <PRE>
  584.     $count = 0;
  585.     s{((whom?)ever)}{
  586.         ++$count == 5           # is it the 5th?
  587.             ? "${2}soever"      # yes, swap
  588.             : $1                # renege and leave it there
  589.     }ige;</PRE>
  590. <P>In the more general case, you can use the <CODE>/g</CODE> modifier in a <CODE>while</CODE>
  591. loop, keeping count of matches.</P>
  592. <PRE>
  593.     $WANT = 3;
  594.     $count = 0;
  595.     $_ = "One fish two fish red fish blue fish";
  596.     while (/(\w+)\s+fish\b/gi) {
  597.         if (++$count == $WANT) {
  598.             print "The third fish is a $1 one.\n";
  599.         }
  600.     }</PRE>
  601. <P>That prints out: <CODE>"The third fish is a red one."</CODE>  You can also use a
  602. repetition count and repeated pattern like this:</P>
  603. <PRE>
  604.     /(?:\w+\s+fish\s+){2}(\w+)\s+fish/i;</PRE>
  605. <P>
  606. <H2><A NAME="how can i count the number of occurrences of a substring within a string">How can I count the number of occurrences of a substring within a string?</A></H2>
  607. <P>There are a number of ways, with varying efficiency: If you want a
  608. count of a certain single character (X) within a string, you can use the
  609. <CODE>tr///</CODE> function like so:</P>
  610. <PRE>
  611.     $string = "ThisXlineXhasXsomeXx'sXinXit";
  612.     $count = ($string =~ tr/X//);
  613.     print "There are $count X characters in the string";</PRE>
  614. <P>This is fine if you are just looking for a single character.  However,
  615. if you are trying to count multiple character substrings within a
  616. larger string, <CODE>tr///</CODE> won't work.  What you can do is wrap a <CODE>while()</CODE>
  617. loop around a global pattern match.  For example, let's count negative
  618. integers:</P>
  619. <PRE>
  620.     $string = "-9 55 48 -2 23 -76 4 14 -44";
  621.     while ($string =~ /-\d+/g) { $count++ }
  622.     print "There are $count negative numbers in the string";</PRE>
  623. <P>
  624. <H2><A NAME="how do i capitalize all the words on one line">How do I capitalize all the words on one line?</A></H2>
  625. <P>To make the first letter of each word upper case:</P>
  626. <PRE>
  627.         $line =~ s/\b(\w)/\U$1/g;</PRE>
  628. <P>This has the strange effect of turning ``<CODE>don't do it</CODE>'' into ``<CODE>Don'T
  629. Do It</CODE>''.  Sometimes you might want this, instead (Suggested by brian d. 
  630. foy):</P>
  631. <PRE>
  632.     $string =~ s/ (
  633.                  (^\w)    #at the beginning of the line
  634.                    |      # or
  635.                  (\s\w)   #preceded by whitespace
  636.                    )
  637.                 /\U$1/xg;
  638.     $string =~ /([\w']+)/\u\L$1/g;</PRE>
  639. <P>To make the whole line upper case:</P>
  640. <PRE>
  641.         $line = uc($line);</PRE>
  642. <P>To force each word to be lower case, with the first letter upper case:</P>
  643. <PRE>
  644.         $line =~ s/(\w+)/\u\L$1/g;</PRE>
  645. <P>You can (and probably should) enable locale awareness of those
  646. characters by placing a <CODE>use locale</CODE> pragma in your program.
  647. See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A> for endless details on locales.</P>
  648. <P>This is sometimes referred to as putting something into ``title
  649. case'', but that's not quite accurate.  Consider the proper
  650. capitalization of the movie <EM>Dr. Strangelove or: How I Learned to
  651. Stop Worrying and Love the Bomb</EM>, for example.</P>
  652. <P>
  653. <H2><A NAME="how can i split a [character] delimited string except when inside [character] (commaseparated files)">How can I split a [character] delimited string except when inside
  654. [character]? (Comma-separated files)</A></H2>
  655. <P>Take the example case of trying to split a string that is comma-separated
  656. into its different fields.  (We'll pretend you said comma-separated, not
  657. comma-delimited, which is different and almost never what you mean.) You
  658. can't use <A HREF="../../lib/Pod/perlfunc.html#item_split"><CODE>split(/,/)</CODE></A> because you shouldn't split if the comma is inside
  659. quotes.  For example, take a data line like this:</P>
  660. <PRE>
  661.     SAR001,"","Cimetrix, Inc","Bob Smith","CAM",N,8,1,0,7,"Error, Core Dumped"</PRE>
  662. <P>Due to the restriction of the quotes, this is a fairly complex
  663. problem.  Thankfully, we have Jeffrey Friedl, author of a highly
  664. recommended book on regular expressions, to handle these for us.  He
  665. suggests (assuming your string is contained in $text):</P>
  666. <PRE>
  667.      @new = ();
  668.      push(@new, $+) while $text =~ m{
  669.          "([^\"\\]*(?:\\.[^\"\\]*)*)",?  # groups the phrase inside the quotes
  670.        | ([^,]+),?
  671.        | ,
  672.      }gx;
  673.      push(@new, undef) if substr($text,-1,1) eq ',';</PRE>
  674. <P>If you want to represent quotation marks inside a
  675. quotation-mark-delimited field, escape them with backslashes (eg,
  676. <CODE>"like \"this\""</CODE>.  Unescaping them is a task addressed earlier in
  677. this section.</P>
  678. <P>Alternatively, the Text::ParseWords module (part of the standard Perl
  679. distribution) lets you say:</P>
  680. <PRE>
  681.     use Text::ParseWords;
  682.     @new = quotewords(",", 0, $text);</PRE>
  683. <P>There's also a Text::CSV module on CPAN.</P>
  684. <P>
  685. <H2><A NAME="how do i strip blank space from the beginning/end of a string">How do I strip blank space from the beginning/end of a string?</A></H2>
  686. <P>Although the simplest approach would seem to be:</P>
  687. <PRE>
  688.     $string =~ s/^\s*(.*?)\s*$/$1/;</PRE>
  689. <P>Not only is this unnecessarily slow and destructive, it also fails with
  690. embedded newlines.  It is much faster to do this operation in two steps:</P>
  691. <PRE>
  692.     $string =~ s/^\s+//;
  693.     $string =~ s/\s+$//;</PRE>
  694. <P>Or more nicely written as:</P>
  695. <PRE>
  696.     for ($string) {
  697.         s/^\s+//;
  698.         s/\s+$//;
  699.     }</PRE>
  700. <P>This idiom takes advantage of the <CODE>foreach</CODE> loop's aliasing
  701. behavior to factor out common code.  You can do this
  702. on several strings at once, or arrays, or even the 
  703. values of a hash if you use a slice:</P>
  704. <PRE>
  705.     # trim whitespace in the scalar, the array, 
  706.     # and all the values in the hash
  707.     foreach ($scalar, @array, @hash{keys %hash}) {
  708.         s/^\s+//;
  709.         s/\s+$//;
  710.     }</PRE>
  711. <P>
  712. <H2><A NAME="how do i pad a string with blanks or pad a number with zeroes">How do I pad a string with blanks or pad a number with zeroes?</A></H2>
  713. <P>(This answer contributed by Uri Guttman, with kibitzing from
  714. Bart Lateur.)</P>
  715. <P>In the following examples, <CODE>$pad_len</CODE> is the length to which you wish
  716. to pad the string, <CODE>$text</CODE> or <CODE>$num</CODE> contains the string to be padded,
  717. and <CODE>$pad_char</CODE> contains the padding character. You can use a single
  718. character string constant instead of the <CODE>$pad_char</CODE> variable if you
  719. know what it is in advance. And in the same way you can use an integer in
  720. place of <CODE>$pad_len</CODE> if you know the pad length in advance.</P>
  721. <P>The simplest method uses the <A HREF="../../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf</CODE></A> function. It can pad on the left
  722. or right with blanks and on the left with zeroes and it will not
  723. truncate the result. The <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack</CODE></A> function can only pad strings on the
  724. right with blanks and it will truncate the result to a maximum length of
  725. <CODE>$pad_len</CODE>.</P>
  726. <PRE>
  727.     # Left padding a string with blanks (no truncation):
  728.     $padded = sprintf("%${pad_len}s", $text);</PRE>
  729. <PRE>
  730.     # Right padding a string with blanks (no truncation):
  731.     $padded = sprintf("%-${pad_len}s", $text);</PRE>
  732. <PRE>
  733.     # Left padding a number with 0 (no truncation): 
  734.     $padded = sprintf("%0${pad_len}d", $num);</PRE>
  735. <PRE>
  736.     # Right padding a string with blanks using pack (will truncate):
  737.     $padded = pack("A$pad_len",$text);</PRE>
  738. <P>If you need to pad with a character other than blank or zero you can use
  739. one of the following methods.  They all generate a pad string with the
  740. <CODE>x</CODE> operator and combine that with <CODE>$text</CODE>. These methods do
  741. not truncate <CODE>$text</CODE>.</P>
  742. <P>Left and right padding with any character, creating a new string:</P>
  743. <PRE>
  744.     $padded = $pad_char x ( $pad_len - length( $text ) ) . $text;
  745.     $padded = $text . $pad_char x ( $pad_len - length( $text ) );</PRE>
  746. <P>Left and right padding with any character, modifying <CODE>$text</CODE> directly:</P>
  747. <PRE>
  748.     substr( $text, 0, 0 ) = $pad_char x ( $pad_len - length( $text ) );
  749.     $text .= $pad_char x ( $pad_len - length( $text ) );</PRE>
  750. <P>
  751. <H2><A NAME="how do i extract selected columns from a string">How do I extract selected columns from a string?</A></H2>
  752. <P>Use <A HREF="../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A> or unpack(), both documented in <A HREF="../../lib/Pod/perlfunc.html">the perlfunc manpage</A>.
  753. If you prefer thinking in terms of columns instead of widths, 
  754. you can use this kind of thing:</P>
  755. <PRE>
  756.     # determine the unpack format needed to split Linux ps output
  757.     # arguments are cut columns
  758.     my $fmt = cut2fmt(8, 14, 20, 26, 30, 34, 41, 47, 59, 63, 67, 72);</PRE>
  759. <PRE>
  760.     sub cut2fmt { 
  761.         my(@positions) = @_;
  762.         my $template  = '';
  763.         my $lastpos   = 1;
  764.         for my $place (@positions) {
  765.             $template .= "A" . ($place - $lastpos) . " "; 
  766.             $lastpos   = $place;
  767.         }
  768.         $template .= "A*";
  769.         return $template;
  770.     }</PRE>
  771. <P>
  772. <H2><A NAME="how do i find the soundex value of a string">How do I find the soundex value of a string?</A></H2>
  773. <P>Use the standard Text::Soundex module distributed with Perl.
  774. But before you do so, you may want to determine whether `soundex' is in
  775. fact what you think it is.  Knuth's soundex algorithm compresses words
  776. into a small space, and so it does not necessarily distinguish between
  777. two words which you might want to appear separately.  For example, the
  778. last names `Knuth' and `Kant' are both mapped to the soundex code K530.
  779. If Text::Soundex does not do what you are looking for, you might want
  780. to consider the String::Approx module available at CPAN.</P>
  781. <P>
  782. <H2><A NAME="how can i expand variables in text strings">How can I expand variables in text strings?</A></H2>
  783. <P>Let's assume that you have a string like:</P>
  784. <PRE>
  785.     $text = 'this has a $foo in it and a $bar';</PRE>
  786. <P>If those were both global variables, then this would
  787. suffice:</P>
  788. <PRE>
  789.     $text =~ s/\$(\w+)/${$1}/g;  # no /e needed</PRE>
  790. <P>But since they are probably lexicals, or at least, they could
  791. be, you'd have to do this:</P>
  792. <PRE>
  793.     $text =~ s/(\$\w+)/$1/eeg;
  794.     die if $@;                  # needed /ee, not /e</PRE>
  795. <P>It's probably better in the general case to treat those
  796. variables as entries in some special hash.  For example:</P>
  797. <PRE>
  798.     %user_defs = ( 
  799.         foo  => 23,
  800.         bar  => 19,
  801.     );
  802.     $text =~ s/\$(\w+)/$user_defs{$1}/g;</PRE>
  803. <P>See also ``How do I expand function calls in a string?'' in this section
  804. of the FAQ.</P>
  805. <P>
  806. <H2><A NAME="what's wrong with always quoting $vars">What's wrong with always quoting ``$vars''?</A></H2>
  807. <P>The problem is that those double-quotes force stringification,
  808. coercing numbers and references into strings, even when you
  809. don't want them to be.  Think of it this way: double-quote
  810. expansion is used to produce new strings.  If you already 
  811. have a string, why do you need more?</P>
  812. <P>If you get used to writing odd things like these:</P>
  813. <PRE>
  814.     print "$var";       # BAD
  815.     $new = "$old";      # BAD
  816.     somefunc("$var");   # BAD</PRE>
  817. <P>You'll be in trouble.  Those should (in 99.8% of the cases) be
  818. the simpler and more direct:</P>
  819. <PRE>
  820.     print $var;
  821.     $new = $old;
  822.     somefunc($var);</PRE>
  823. <P>Otherwise, besides slowing you down, you're going to break code when
  824. the thing in the scalar is actually neither a string nor a number, but
  825. a reference:</P>
  826. <PRE>
  827.     func(\@array);
  828.     sub func {
  829.         my $aref = shift;
  830.         my $oref = "$aref";  # WRONG
  831.     }</PRE>
  832. <P>You can also get into subtle problems on those few operations in Perl
  833. that actually do care about the difference between a string and a
  834. number, such as the magical <CODE>++</CODE> autoincrement operator or the
  835. <A HREF="../../lib/Pod/perlfunc.html#item_syscall"><CODE>syscall()</CODE></A> function.</P>
  836. <P>Stringification also destroys arrays.</P>
  837. <PRE>
  838.     @lines = `command`;
  839.     print "@lines";             # WRONG - extra blanks
  840.     print @lines;               # right</PRE>
  841. <P>
  842. <H2><A NAME="why don't my <<here documents work">Why don't my <<HERE documents work?</A></H2>
  843. <P>Check for these three things:</P>
  844. <OL>
  845. <LI><STRONG><A NAME="item_There_must_be_no_space_after_the_%3C%3C_part%2E">There must be no space after the << part.</A></STRONG><BR>
  846.  
  847. <LI><STRONG><A NAME="item_There">There (probably) should be a semicolon at the end.</A></STRONG><BR>
  848.  
  849. <LI><STRONG><A NAME="item_t">You can't (easily) have any space in front of the tag.</A></STRONG><BR>
  850.  
  851. </OL>
  852. <P>If you want to indent the text in the here document, you 
  853. can do this:</P>
  854. <PRE>
  855.     # all in one
  856.     ($VAR = <<HERE_TARGET) =~ s/^\s+//gm;
  857.         your text
  858.         goes here
  859.     HERE_TARGET</PRE>
  860. <P>But the HERE_TARGET must still be flush against the margin.
  861. If you want that indented also, you'll have to quote 
  862. in the indentation.</P>
  863. <PRE>
  864.     ($quote = <<'    FINIS') =~ s/^\s+//gm;
  865.             ...we will have peace, when you and all your works have
  866.             perished--and the works of your dark master to whom you
  867.             would deliver us. You are a liar, Saruman, and a corrupter
  868.             of men's hearts.  --Theoden in /usr/src/perl/taint.c
  869.         FINIS
  870.     $quote =~ s/\s*--/\n--/;</PRE>
  871. <P>A nice general-purpose fixer-upper function for indented here documents
  872. follows.  It expects to be called with a here document as its argument.
  873. It looks to see whether each line begins with a common substring, and
  874. if so, strips that off.  Otherwise, it takes the amount of leading
  875. white space found on the first line and removes that much off each
  876. subsequent line.</P>
  877. <PRE>
  878.     sub fix {
  879.         local $_ = shift;
  880.         my ($white, $leader);  # common white space and common leading string
  881.         if (/^\s*(?:([^\w\s]+)(\s*).*\n)(?:\s*\1\2?.*\n)+$/) {
  882.             ($white, $leader) = ($2, quotemeta($1));
  883.         } else {
  884.             ($white, $leader) = (/^(\s+)/, '');
  885.         }
  886.         s/^\s*?$leader(?:$white)?//gm;
  887.         return $_;
  888.     }</PRE>
  889. <P>This works with leading special strings, dynamically determined:</P>
  890. <PRE>
  891.     $remember_the_main = fix<<'    MAIN_INTERPRETER_LOOP';
  892.         @@@ int
  893.         @@@ runops() {
  894.         @@@     SAVEI32(runlevel);
  895.         @@@     runlevel++;
  896.         @@@     while ( op = (*op->op_ppaddr)() );
  897.         @@@     TAINT_NOT;
  898.         @@@     return 0;
  899.         @@@ }
  900.     MAIN_INTERPRETER_LOOP</PRE>
  901. <P>Or with a fixed amount of leading white space, with remaining
  902. indentation correctly preserved:</P>
  903. <PRE>
  904.     $poem = fix<<EVER_ON_AND_ON;
  905.        Now far ahead the Road has gone,
  906.           And I must follow, if I can,
  907.        Pursuing it with eager feet,
  908.           Until it joins some larger way
  909.        Where many paths and errands meet.
  910.           And whither then? I cannot say.
  911.                 --Bilbo in /usr/src/perl/pp_ctl.c
  912.     EVER_ON_AND_ON</PRE>
  913. <P>
  914. <HR>
  915. <H1><A NAME="data: arrays">Data: Arrays</A></H1>
  916. <P>
  917. <H2><A NAME="what is the difference between a list and an array">What is the difference between a list and an array?</A></H2>
  918. <P>An array has a changeable length.  A list does not.  An array is something
  919. you can push or pop, while a list is a set of values.  Some people make
  920. the distinction that a list is a value while an array is a variable.
  921. Subroutines are passed and return lists, you put things into list
  922. context, you initialize arrays with lists, and you <CODE>foreach()</CODE> across
  923. a list.  <CODE>@</CODE> variables are arrays, anonymous arrays are arrays, arrays
  924. in scalar context behave like the number of elements in them, subroutines
  925. access their arguments through the array <CODE>@_</CODE>, push/pop/shift only work
  926. on arrays.</P>
  927. <P>As a side note, there's no such thing as a list in scalar context.
  928. When you say</P>
  929. <PRE>
  930.     $scalar = (2, 5, 7, 9);</PRE>
  931. <P>you're using the comma operator in scalar context, so it uses the scalar
  932. comma operator.  There never was a list there at all!  This causes the
  933. last value to be returned: 9.</P>
  934. <P>
  935. <H2><A NAME="what is the difference between $array[1] and @array[1]">What is the difference between $array[1] and @array[1]?</A></H2>
  936. <P>The former is a scalar value, the latter an array slice, which makes
  937. it a list with one (scalar) value.  You should use $ when you want a
  938. scalar value (most of the time) and @ when you want a list with one
  939. scalar value in it (very, very rarely; nearly never, in fact).</P>
  940. <P>Sometimes it doesn't make a difference, but sometimes it does.
  941. For example, compare:</P>
  942. <PRE>
  943.     $good[0] = `some program that outputs several lines`;</PRE>
  944. <P>with</P>
  945. <PRE>
  946.     @bad[0]  = `same program that outputs several lines`;</PRE>
  947. <P>The <CODE>use warnings</CODE> pragma and the <STRONG>-w</STRONG> flag will warn you about these 
  948. matters.</P>
  949. <P>
  950. <H2><A NAME="how can i remove duplicate elements from a list or array">How can I remove duplicate elements from a list or array?</A></H2>
  951. <P>There are several possible ways, depending on whether the array is
  952. ordered and whether you wish to preserve the ordering.</P>
  953. <DL>
  954. <DT><STRONG><A NAME="item_a%29_If_%40in_is_sorted%2C_and_you_want_%40out_to_">a) If @in is sorted, and you want @out to be sorted:
  955. (this assumes all true values in the array)</A></STRONG><BR>
  956. <DD>
  957. <PRE>
  958.     $prev = 'nonesuch';
  959.     @out = grep($_ ne $prev && ($prev = $_), @in);</PRE>
  960. <P>This is nice in that it doesn't use much extra memory, simulating
  961. uniq(1)'s behavior of removing only adjacent duplicates.  It's less
  962. nice in that it won't work with false values like undef, 0, or ``'';
  963. ``0 but true'' is OK, though.</P>
  964. <DT><STRONG><A NAME="item_b%29_If_you_don%27t_know_whether_%40in_is_sorted%3">b) If you don't know whether @in is sorted:</A></STRONG><BR>
  965. <DD>
  966. <PRE>
  967.     undef %saw;
  968.     @out = grep(!$saw{$_}++, @in);</PRE>
  969. <DT><STRONG><A NAME="item_Like">c) Like (b), but @in contains only small integers:</A></STRONG><BR>
  970. <DD>
  971. <PRE>
  972.     @out = grep(!$saw[$_]++, @in);</PRE>
  973. <DT><STRONG><A NAME="item_do">d) A way to do (b) without any loops or greps:</A></STRONG><BR>
  974. <DD>
  975. <PRE>
  976.     undef %saw;
  977.     @saw{@in} = ();
  978.     @out = sort keys %saw;  # remove sort if undesired</PRE>
  979. <DT><STRONG>e) Like (d), but @in contains only small positive integers:</STRONG><BR>
  980. <DD>
  981. <PRE>
  982.     undef @ary;
  983.     @ary[@in] = @in;
  984.     @out = grep {defined} @ary;</PRE>
  985. </DL>
  986. <P>But perhaps you should have been using a hash all along, eh?</P>
  987. <P>
  988. <H2><A NAME="how can i tell whether a list or array contains a certain element">How can I tell whether a list or array contains a certain element?</A></H2>
  989. <P>Hearing the word ``in'' is an <EM>in</EM>dication that you probably should have
  990. used a hash, not a list or array, to store your data.  Hashes are
  991. designed to answer this question quickly and efficiently.  Arrays aren't.</P>
  992. <P>That being said, there are several ways to approach this.  If you
  993. are going to make this query many times over arbitrary string values,
  994. the fastest way is probably to invert the original array and keep an
  995. associative array lying about whose keys are the first array's values.</P>
  996. <PRE>
  997.     @blues = qw/azure cerulean teal turquoise lapis-lazuli/;
  998.     undef %is_blue;
  999.     for (@blues) { $is_blue{$_} = 1 }</PRE>
  1000. <P>Now you can check whether $is_blue{$some_color}.  It might have been a
  1001. good idea to keep the blues all in a hash in the first place.</P>
  1002. <P>If the values are all small integers, you could use a simple indexed
  1003. array.  This kind of an array will take up less space:</P>
  1004. <PRE>
  1005.     @primes = (2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31);
  1006.     undef @is_tiny_prime;
  1007.     for (@primes) { $is_tiny_prime[$_] = 1 }
  1008.     # or simply  @istiny_prime[@primes] = (1) x @primes;</PRE>
  1009. <P>Now you check whether $is_tiny_prime[$some_number].</P>
  1010. <P>If the values in question are integers instead of strings, you can save
  1011. quite a lot of space by using bit strings instead:</P>
  1012. <PRE>
  1013.     @articles = ( 1..10, 150..2000, 2017 );
  1014.     undef $read;
  1015.     for (@articles) { vec($read,$_,1) = 1 }</PRE>
  1016. <P>Now check whether <A HREF="../../lib/Pod/perlfunc.html#item_vec"><CODE>vec($read,$n,1)</CODE></A> is true for some <CODE>$n</CODE>.</P>
  1017. <P>Please do not use</P>
  1018. <PRE>
  1019.     $is_there = grep $_ eq $whatever, @array;</PRE>
  1020. <P>or worse yet</P>
  1021. <PRE>
  1022.     $is_there = grep /$whatever/, @array;</PRE>
  1023. <P>These are slow (checks every element even if the first matches),
  1024. inefficient (same reason), and potentially buggy (what if there are
  1025. regex characters in $whatever?).  If you're only testing once, then
  1026. use:</P>
  1027. <PRE>
  1028.     $is_there = 0;
  1029.     foreach $elt (@array) {
  1030.         if ($elt eq $elt_to_find) {
  1031.             $is_there = 1;
  1032.             last;
  1033.         }
  1034.     }
  1035.     if ($is_there) { ... }</PRE>
  1036. <P>
  1037. <H2><A NAME="how do i compute the difference of two arrays how do i compute the intersection of two arrays">How do I compute the difference of two arrays?  How do I compute the intersection of two arrays?</A></H2>
  1038. <P>Use a hash.  Here's code to do both and more.  It assumes that
  1039. each element is unique in a given array:</P>
  1040. <PRE>
  1041.     @union = @intersection = @difference = ();
  1042.     %count = ();
  1043.     foreach $element (@array1, @array2) { $count{$element}++ }
  1044.     foreach $element (keys %count) {
  1045.         push @union, $element;
  1046.         push @{ $count{$element} > 1 ? \@intersection : \@difference }, $element;
  1047.     }</PRE>
  1048. <P>Note that this is the <EM>symmetric difference</EM>, that is, all elements in
  1049. either A or in B, but not in both.  Think of it as an xor operation.</P>
  1050. <P>
  1051. <H2><A NAME="how do i test whether two arrays or hashes are equal">How do I test whether two arrays or hashes are equal?</A></H2>
  1052. <P>The following code works for single-level arrays.  It uses a stringwise
  1053. comparison, and does not distinguish defined versus undefined empty
  1054. strings.  Modify if you have other needs.</P>
  1055. <PRE>
  1056.     $are_equal = compare_arrays(\@frogs, \@toads);</PRE>
  1057. <PRE>
  1058.     sub compare_arrays {
  1059.         my ($first, $second) = @_;
  1060.         no warnings;  # silence spurious -w undef complaints
  1061.         return 0 unless @$first == @$second;
  1062.         for (my $i = 0; $i < @$first; $i++) {
  1063.             return 0 if $first->[$i] ne $second->[$i];
  1064.         }
  1065.         return 1;
  1066.     }</PRE>
  1067. <P>For multilevel structures, you may wish to use an approach more
  1068. like this one.  It uses the CPAN module FreezeThaw:</P>
  1069. <PRE>
  1070.     use FreezeThaw qw(cmpStr);
  1071.     @a = @b = ( "this", "that", [ "more", "stuff" ] );</PRE>
  1072. <PRE>
  1073.     printf "a and b contain %s arrays\n",
  1074.         cmpStr(\@a, \@b) == 0 
  1075.             ? "the same" 
  1076.             : "different";</PRE>
  1077. <P>This approach also works for comparing hashes.  Here
  1078. we'll demonstrate two different answers:</P>
  1079. <PRE>
  1080.     use FreezeThaw qw(cmpStr cmpStrHard);</PRE>
  1081. <PRE>
  1082.     %a = %b = ( "this" => "that", "extra" => [ "more", "stuff" ] );
  1083.     $a{EXTRA} = \%b;
  1084.     $b{EXTRA} = \%a;</PRE>
  1085. <PRE>
  1086.     printf "a and b contain %s hashes\n",
  1087.         cmpStr(\%a, \%b) == 0 ? "the same" : "different";</PRE>
  1088. <PRE>
  1089.     printf "a and b contain %s hashes\n",
  1090.         cmpStrHard(\%a, \%b) == 0 ? "the same" : "different";</PRE>
  1091. <P>The first reports that both those the hashes contain the same data,
  1092. while the second reports that they do not.  Which you prefer is left as
  1093. an exercise to the reader.</P>
  1094. <P>
  1095. <H2><A NAME="how do i find the first array element for which a condition is true">How do I find the first array element for which a condition is true?</A></H2>
  1096. <P>You can use this if you care about the index:</P>
  1097. <PRE>
  1098.     for ($i= 0; $i < @array; $i++) {
  1099.         if ($array[$i] eq "Waldo") {
  1100.             $found_index = $i;
  1101.             last;
  1102.         }
  1103.     }</PRE>
  1104. <P>Now <CODE>$found_index</CODE> has what you want.</P>
  1105. <P>
  1106. <H2><A NAME="how do i handle linked lists">How do I handle linked lists?</A></H2>
  1107. <P>In general, you usually don't need a linked list in Perl, since with
  1108. regular arrays, you can push and pop or shift and unshift at either end,
  1109. or you can use splice to add and/or remove arbitrary number of elements at
  1110. arbitrary points.  Both pop and shift are both <CODE>O(1)</CODE> operations on Perl's
  1111. dynamic arrays.  In the absence of shifts and pops, push in general
  1112. needs to reallocate on the order every <A HREF="../../lib/Pod/perlfunc.html#item_log"><CODE>log(N)</CODE></A> times, and unshift will
  1113. need to copy pointers each time.</P>
  1114. <P>If you really, really wanted, you could use structures as described in
  1115. <A HREF="../../lib/Pod/perldsc.html">the perldsc manpage</A> or <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A> and do just what the algorithm book tells you
  1116. to do.  For example, imagine a list node like this:</P>
  1117. <PRE>
  1118.     $node = {
  1119.         VALUE => 42,
  1120.         LINK  => undef,
  1121.     };</PRE>
  1122. <P>You could walk the list this way:</P>
  1123. <PRE>
  1124.     print "List: ";
  1125.     for ($node = $head;  $node; $node = $node->{LINK}) {
  1126.         print $node->{VALUE}, " ";
  1127.     }
  1128.     print "\n";</PRE>
  1129. <P>You could grow the list this way:</P>
  1130. <PRE>
  1131.     my ($head, $tail);
  1132.     $tail = append($head, 1);       # grow a new head
  1133.     for $value ( 2 .. 10 ) {
  1134.         $tail = append($tail, $value);
  1135.     }</PRE>
  1136. <PRE>
  1137.     sub append {
  1138.         my($list, $value) = @_;
  1139.         my $node = { VALUE => $value };
  1140.         if ($list) {
  1141.             $node->{LINK} = $list->{LINK};
  1142.             $list->{LINK} = $node;
  1143.         } else {
  1144.             $_[0] = $node;      # replace caller's version
  1145.         }
  1146.         return $node;
  1147.     }</PRE>
  1148. <P>But again, Perl's built-in are virtually always good enough.</P>
  1149. <P>
  1150. <H2><A NAME="how do i handle circular lists">How do I handle circular lists?</A></H2>
  1151. <P>Circular lists could be handled in the traditional fashion with linked
  1152. lists, or you could just do something like this with an array:</P>
  1153. <PRE>
  1154.     unshift(@array, pop(@array));  # the last shall be first
  1155.     push(@array, shift(@array));   # and vice versa</PRE>
  1156. <P>
  1157. <H2><A NAME="how do i shuffle an array randomly">How do I shuffle an array randomly?</A></H2>
  1158. <P>Use this:</P>
  1159. <PRE>
  1160.     # fisher_yates_shuffle( \@array ) : 
  1161.     # generate a random permutation of @array in place
  1162.     sub fisher_yates_shuffle {
  1163.         my $array = shift;
  1164.         my $i;
  1165.         for ($i = @$array; --$i; ) {
  1166.             my $j = int rand ($i+1);
  1167.             next if $i == $j;
  1168.             @$array[$i,$j] = @$array[$j,$i];
  1169.         }
  1170.     }</PRE>
  1171. <PRE>
  1172.     fisher_yates_shuffle( \@array );    # permutes @array in place</PRE>
  1173. <P>You've probably seen shuffling algorithms that work using splice,
  1174. randomly picking another element to swap the current element with:</P>
  1175. <PRE>
  1176.     srand;
  1177.     @new = ();
  1178.     @old = 1 .. 10;  # just a demo
  1179.     while (@old) {
  1180.         push(@new, splice(@old, rand @old, 1));
  1181.     }</PRE>
  1182. <P>This is bad because splice is already O(N), and since you do it N times,
  1183. you just invented a quadratic algorithm; that is, O(N**2).  This does
  1184. not scale, although Perl is so efficient that you probably won't notice
  1185. this until you have rather largish arrays.</P>
  1186. <P>
  1187. <H2><A NAME="how do i process/modify each element of an array">How do I process/modify each element of an array?</A></H2>
  1188. <P>Use <CODE>for</CODE>/<CODE>foreach</CODE>:</P>
  1189. <PRE>
  1190.     for (@lines) {
  1191.         s/foo/bar/;     # change that word
  1192.         y/XZ/ZX/;       # swap those letters
  1193.     }</PRE>
  1194. <P>Here's another; let's compute spherical volumes:</P>
  1195. <PRE>
  1196.     for (@volumes = @radii) {   # @volumes has changed parts
  1197.         $_ **= 3;
  1198.         $_ *= (4/3) * 3.14159;  # this will be constant folded
  1199.     }</PRE>
  1200. <P>If you want to do the same thing to modify the values of the hash,
  1201. you may not use the <A HREF="../../lib/Pod/perlfunc.html#item_values"><CODE>values</CODE></A> function, oddly enough.  You need a slice:</P>
  1202. <PRE>
  1203.     for $orbit ( @orbits{keys %orbits} ) {
  1204.         ($orbit **= 3) *= (4/3) * 3.14159; 
  1205.     }</PRE>
  1206. <P>
  1207. <H2><A NAME="how do i select a random element from an array">How do I select a random element from an array?</A></H2>
  1208. <P>Use the <A HREF="../../lib/Pod/perlfunc.html#item_rand"><CODE>rand()</CODE></A> function (see <A HREF="../../lib/Pod/perlfunc.html#rand">rand in the perlfunc manpage</A>):</P>
  1209. <PRE>
  1210.     # at the top of the program:
  1211.     srand;                      # not needed for 5.004 and later</PRE>
  1212. <PRE>
  1213.     # then later on
  1214.     $index   = rand @array;
  1215.     $element = $array[$index];</PRE>
  1216. <P>Make sure you <EM>only call srand once per program, if then</EM>.
  1217. If you are calling it more than once (such as before each 
  1218. call to rand), you're almost certainly doing something wrong.</P>
  1219. <P>
  1220. <H2><A NAME="how do i permute n elements of a list">How do I permute N elements of a list?</A></H2>
  1221. <P>Here's a little program that generates all permutations
  1222. of all the words on each line of input.  The algorithm embodied
  1223. in the <CODE>permute()</CODE> function should work on any list:</P>
  1224. <PRE>
  1225.     #!/usr/bin/perl -n
  1226.     # tsc-permute: permute each word of input
  1227.     permute([split], []);
  1228.     sub permute {
  1229.         my @items = @{ $_[0] };
  1230.         my @perms = @{ $_[1] };
  1231.         unless (@items) {
  1232.             print "@perms\n";
  1233.         } else {
  1234.             my(@newitems,@newperms,$i);
  1235.             foreach $i (0 .. $#items) {
  1236.                 @newitems = @items;
  1237.                 @newperms = @perms;
  1238.                 unshift(@newperms, splice(@newitems, $i, 1));
  1239.                 permute([@newitems], [@newperms]);
  1240.             }
  1241.         }
  1242.     }</PRE>
  1243. <P>
  1244. <H2><A NAME="how do i sort an array by (anything)">How do I sort an array by (anything)?</A></H2>
  1245. <P>Supply a comparison function to <A HREF="../../lib/Pod/perlfunc.html#item_sort"><CODE>sort()</CODE></A> (described in <A HREF="../../lib/Pod/perlfunc.html#sort">sort in the perlfunc manpage</A>):</P>
  1246. <PRE>
  1247.     @list = sort { $a <=> $b } @list;</PRE>
  1248. <P>The default sort function is cmp, string comparison, which would
  1249. sort <CODE>(1, 2, 10)</CODE> into <CODE>(1, 10, 2)</CODE>.  <CODE><=></CODE>, used above, is
  1250. the numerical comparison operator.</P>
  1251. <P>If you have a complicated function needed to pull out the part you
  1252. want to sort on, then don't do it inside the sort function.  Pull it
  1253. out first, because the sort BLOCK can be called many times for the
  1254. same element.  Here's an example of how to pull out the first word
  1255. after the first number on each item, and then sort those words
  1256. case-insensitively.</P>
  1257. <PRE>
  1258.     @idx = ();
  1259.     for (@data) {
  1260.         ($item) = /\d+\s*(\S+)/;
  1261.         push @idx, uc($item);
  1262.     }
  1263.     @sorted = @data[ sort { $idx[$a] cmp $idx[$b] } 0 .. $#idx ];</PRE>
  1264. <P>Which could also be written this way, using a trick
  1265. that's come to be known as the Schwartzian Transform:</P>
  1266. <PRE>
  1267.     @sorted = map  { $_->[0] }
  1268.               sort { $a->[1] cmp $b->[1] }
  1269.               map  { [ $_, uc( (/\d+\s*(\S+)/)[0]) ] } @data;</PRE>
  1270. <P>If you need to sort on several fields, the following paradigm is useful.</P>
  1271. <PRE>
  1272.     @sorted = sort { field1($a) <=> field1($b) ||
  1273.                      field2($a) cmp field2($b) ||
  1274.                      field3($a) cmp field3($b)
  1275.                    }     @data;</PRE>
  1276. <P>This can be conveniently combined with precalculation of keys as given
  1277. above.</P>
  1278. <P>See <A HREF="http://www.perl.com/CPAN/doc/FMTEYEWTK/sort.html">http://www.perl.com/CPAN/doc/FMTEYEWTK/sort.html</A> for more about
  1279. this approach.</P>
  1280. <P>See also the question below on sorting hashes.</P>
  1281. <P>
  1282. <H2><A NAME="how do i manipulate arrays of bits">How do I manipulate arrays of bits?</A></H2>
  1283. <P>Use <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack()</CODE></A> and unpack(), or else <A HREF="../../lib/Pod/perlfunc.html#item_vec"><CODE>vec()</CODE></A> and the bitwise operations.</P>
  1284. <P>For example, this sets $vec to have bit N set if $ints[N] was set:</P>
  1285. <PRE>
  1286.     $vec = '';
  1287.     foreach(@ints) { vec($vec,$_,1) = 1 }</PRE>
  1288. <P>And here's how, given a vector in $vec, you can
  1289. get those bits into your @ints array:</P>
  1290. <PRE>
  1291.     sub bitvec_to_list {
  1292.         my $vec = shift;
  1293.         my @ints;
  1294.         # Find null-byte density then select best algorithm
  1295.         if ($vec =~ tr/\0// / length $vec > 0.95) {
  1296.             use integer;
  1297.             my $i;
  1298.             # This method is faster with mostly null-bytes
  1299.             while($vec =~ /[^\0]/g ) {
  1300.                 $i = -9 + 8 * pos $vec;
  1301.                 push @ints, $i if vec($vec, ++$i, 1);
  1302.                 push @ints, $i if vec($vec, ++$i, 1);
  1303.                 push @ints, $i if vec($vec, ++$i, 1);
  1304.                 push @ints, $i if vec($vec, ++$i, 1);
  1305.                 push @ints, $i if vec($vec, ++$i, 1);
  1306.                 push @ints, $i if vec($vec, ++$i, 1);
  1307.                 push @ints, $i if vec($vec, ++$i, 1);
  1308.                 push @ints, $i if vec($vec, ++$i, 1);
  1309.             }
  1310.         } else {
  1311.             # This method is a fast general algorithm
  1312.             use integer;
  1313.             my $bits = unpack "b*", $vec;
  1314.             push @ints, 0 if $bits =~ s/^(\d)// && $1;
  1315.             push @ints, pos $bits while($bits =~ /1/g);
  1316.         }
  1317.         return \@ints;
  1318.     }</PRE>
  1319. <P>This method gets faster the more sparse the bit vector is.
  1320. (Courtesy of Tim Bunce and Winfried Koenig.)</P>
  1321. <P>Here's a demo on how to use vec():</P>
  1322. <PRE>
  1323.     # vec demo
  1324.     $vector = "\xff\x0f\xef\xfe";
  1325.     print "Ilya's string \\xff\\x0f\\xef\\xfe represents the number ", 
  1326.         unpack("N", $vector), "\n";
  1327.     $is_set = vec($vector, 23, 1);
  1328.     print "Its 23rd bit is ", $is_set ? "set" : "clear", ".\n";
  1329.     pvec($vector);</PRE>
  1330. <PRE>
  1331.     set_vec(1,1,1);
  1332.     set_vec(3,1,1);
  1333.     set_vec(23,1,1);</PRE>
  1334. <PRE>
  1335.     set_vec(3,1,3);
  1336.     set_vec(3,2,3);
  1337.     set_vec(3,4,3);
  1338.     set_vec(3,4,7);
  1339.     set_vec(3,8,3);
  1340.     set_vec(3,8,7);</PRE>
  1341. <PRE>
  1342.     set_vec(0,32,17);
  1343.     set_vec(1,32,17);</PRE>
  1344. <PRE>
  1345.     sub set_vec { 
  1346.         my ($offset, $width, $value) = @_;
  1347.         my $vector = '';
  1348.         vec($vector, $offset, $width) = $value;
  1349.         print "offset=$offset width=$width value=$value\n";
  1350.         pvec($vector);
  1351.     }</PRE>
  1352. <PRE>
  1353.     sub pvec {
  1354.         my $vector = shift;
  1355.         my $bits = unpack("b*", $vector);
  1356.         my $i = 0;
  1357.         my $BASE = 8;</PRE>
  1358. <PRE>
  1359.         print "vector length in bytes: ", length($vector), "\n";
  1360.         @bytes = unpack("A8" x length($vector), $bits);
  1361.         print "bits are: @bytes\n\n";
  1362.     }</PRE>
  1363. <P>
  1364. <H2><A NAME="why does defined() return true on empty arrays and hashes">Why does <A HREF="../../lib/Pod/perlfunc.html#item_defined"><CODE>defined()</CODE></A> return true on empty arrays and hashes?</A></H2>
  1365. <P>The short story is that you should probably only use defined on scalars or
  1366. functions, not on aggregates (arrays and hashes).  See <A HREF="../../lib/Pod/perlfunc.html#defined">defined in the perlfunc manpage</A>
  1367. in the 5.004 release or later of Perl for more detail.</P>
  1368. <P>
  1369. <HR>
  1370. <H1><A NAME="data: hashes (associative arrays)">Data: Hashes (Associative Arrays)</A></H1>
  1371. <P>
  1372. <H2><A NAME="how do i process an entire hash">How do I process an entire hash?</A></H2>
  1373. <P>Use the <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A> function (see <A HREF="../../lib/Pod/perlfunc.html#each">each in the perlfunc manpage</A>) if you don't care
  1374. whether it's sorted:</P>
  1375. <PRE>
  1376.     while ( ($key, $value) = each %hash) {
  1377.         print "$key = $value\n";
  1378.     }</PRE>
  1379. <P>If you want it sorted, you'll have to use <CODE>foreach()</CODE> on the result of
  1380. sorting the keys as shown in an earlier question.</P>
  1381. <P>
  1382. <H2><A NAME="what happens if i add or remove keys from a hash while iterating over it">What happens if I add or remove keys from a hash while iterating over it?</A></H2>
  1383. <P>Don't do that. :-)</P>
  1384. <P>[lwall] In Perl 4, you were not allowed to modify a hash at all while
  1385. iterating over it.  In Perl 5 you can delete from it, but you still
  1386. can't add to it, because that might cause a doubling of the hash table,
  1387. in which half the entries get copied up to the new top half of the
  1388. table, at which point you've totally bamboozled the iterator code.
  1389. Even if the table doesn't double, there's no telling whether your new
  1390. entry will be inserted before or after the current iterator position.</P>
  1391. <P>Either treasure up your changes and make them after the iterator finishes,
  1392. or use keys to fetch all the old keys at once, and iterate over the list
  1393. of keys.</P>
  1394. <P>
  1395. <H2><A NAME="how do i look up a hash element by value">How do I look up a hash element by value?</A></H2>
  1396. <P>Create a reverse hash:</P>
  1397. <PRE>
  1398.     %by_value = reverse %by_key;
  1399.     $key = $by_value{$value};</PRE>
  1400. <P>That's not particularly efficient.  It would be more space-efficient
  1401. to use:</P>
  1402. <PRE>
  1403.     while (($key, $value) = each %by_key) {
  1404.         $by_value{$value} = $key;
  1405.     }</PRE>
  1406. <P>If your hash could have repeated values, the methods above will only find
  1407. one of the associated keys.   This may or may not worry you.  If it does
  1408. worry you, you can always reverse the hash into a hash of arrays instead:</P>
  1409. <PRE>
  1410.      while (($key, $value) = each %by_key) {
  1411.          push @{$key_list_by_value{$value}}, $key;
  1412.      }</PRE>
  1413. <P>
  1414. <H2><A NAME="how can i know how many entries are in a hash">How can I know how many entries are in a hash?</A></H2>
  1415. <P>If you mean how many keys, then all you have to do is
  1416. take the scalar sense of the <A HREF="../../lib/Pod/perlfunc.html#item_keys"><CODE>keys()</CODE></A> function:</P>
  1417. <PRE>
  1418.     $num_keys = scalar keys %hash;</PRE>
  1419. <P>In void context, the <A HREF="../../lib/Pod/perlfunc.html#item_keys"><CODE>keys()</CODE></A> function just resets the iterator, which is
  1420. faster for tied hashes than would be iterating through the whole 
  1421. hash, one key-value pair at a time.</P>
  1422. <P>
  1423. <H2><A NAME="how do i sort a hash (optionally by value instead of key)">How do I sort a hash (optionally by value instead of key)?</A></H2>
  1424. <P>Internally, hashes are stored in a way that prevents you from imposing
  1425. an order on key-value pairs.  Instead, you have to sort a list of the
  1426. keys or values:</P>
  1427. <PRE>
  1428.     @keys = sort keys %hash;    # sorted by key
  1429.     @keys = sort {
  1430.                     $hash{$a} cmp $hash{$b}
  1431.             } keys %hash;       # and by value</PRE>
  1432. <P>Here we'll do a reverse numeric sort by value, and if two keys are
  1433. identical, sort by length of key, and if that fails, by straight ASCII
  1434. comparison of the keys (well, possibly modified by your locale -- see
  1435. <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>).</P>
  1436. <PRE>
  1437.     @keys = sort {
  1438.                 $hash{$b} <=> $hash{$a}
  1439.                           ||
  1440.                 length($b) <=> length($a)
  1441.                           ||
  1442.                       $a cmp $b
  1443.     } keys %hash;</PRE>
  1444. <P>
  1445. <H2><A NAME="how can i always keep my hash sorted">How can I always keep my hash sorted?</A></H2>
  1446. <P>You can look into using the DB_File module and <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> using the
  1447. $DB_BTREE hash bindings as documented in <A HREF="../../lib/auto/DB_File/in memory databases.html">In Memory Databases in the DB_File manpage</A>.
  1448. The Tie::IxHash module from CPAN might also be instructive.</P>
  1449. <P>
  1450. <H2><A NAME="what's the difference between delete and undef with hashes">What's the difference between ``delete'' and ``undef'' with hashes?</A></H2>
  1451. <P>Hashes are pairs of scalars: the first is the key, the second is the
  1452. value.  The key will be coerced to a string, although the value can be
  1453. any kind of scalar: string, number, or reference.  If a key <CODE>$key</CODE> is
  1454. present in the array, <A HREF="../../lib/Pod/perlfunc.html#item_exists"><CODE>exists($key)</CODE></A> will return true.  The value for
  1455. a given key can be <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>, in which case <CODE>$array{$key}</CODE> will be
  1456. <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> while <CODE>$exists{$key}</CODE> will return true.  This corresponds to
  1457. (<CODE>$key</CODE>, <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>) being in the hash.</P>
  1458. <P>Pictures help...  here's the <CODE>%ary</CODE> table:</P>
  1459. <PRE>
  1460.           keys  values
  1461.         +------+------+
  1462.         |  a   |  3   |
  1463.         |  x   |  7   |
  1464.         |  d   |  0   |
  1465.         |  e   |  2   |
  1466.         +------+------+</PRE>
  1467. <P>And these conditions hold</P>
  1468. <PRE>
  1469.         $ary{'a'}                       is true
  1470.         $ary{'d'}                       is false
  1471.         defined $ary{'d'}               is true
  1472.         defined $ary{'a'}               is true
  1473.         exists $ary{'a'}                is true (Perl5 only)
  1474.         grep ($_ eq 'a', keys %ary)     is true</PRE>
  1475. <P>If you now say</P>
  1476. <PRE>
  1477.         undef $ary{'a'}</PRE>
  1478. <P>your table now reads:</P>
  1479. <PRE>
  1480.           keys  values
  1481.         +------+------+
  1482.         |  a   | undef|
  1483.         |  x   |  7   |
  1484.         |  d   |  0   |
  1485.         |  e   |  2   |
  1486.         +------+------+</PRE>
  1487. <P>and these conditions now hold; changes in caps:</P>
  1488. <PRE>
  1489.         $ary{'a'}                       is FALSE
  1490.         $ary{'d'}                       is false
  1491.         defined $ary{'d'}               is true
  1492.         defined $ary{'a'}               is FALSE
  1493.         exists $ary{'a'}                is true (Perl5 only)
  1494.         grep ($_ eq 'a', keys %ary)     is true</PRE>
  1495. <P>Notice the last two: you have an undef value, but a defined key!</P>
  1496. <P>Now, consider this:</P>
  1497. <PRE>
  1498.         delete $ary{'a'}</PRE>
  1499. <P>your table now reads:</P>
  1500. <PRE>
  1501.           keys  values
  1502.         +------+------+
  1503.         |  x   |  7   |
  1504.         |  d   |  0   |
  1505.         |  e   |  2   |
  1506.         +------+------+</PRE>
  1507. <P>and these conditions now hold; changes in caps:</P>
  1508. <PRE>
  1509.         $ary{'a'}                       is false
  1510.         $ary{'d'}                       is false
  1511.         defined $ary{'d'}               is true
  1512.         defined $ary{'a'}               is false
  1513.         exists $ary{'a'}                is FALSE (Perl5 only)
  1514.         grep ($_ eq 'a', keys %ary)     is FALSE</PRE>
  1515. <P>See, the whole entry is gone!</P>
  1516. <P>
  1517. <H2><A NAME="why don't my tied hashes make the defined/exists distinction">Why don't my tied hashes make the defined/exists distinction?</A></H2>
  1518. <P>They may or may not implement the <CODE>EXISTS()</CODE> and <CODE>DEFINED()</CODE> methods
  1519. differently.  For example, there isn't the concept of undef with hashes
  1520. that are tied to DBM* files. This means the true/false tables above
  1521. will give different results when used on such a hash.  It also means
  1522. that exists and defined do the same thing with a DBM* file, and what
  1523. they end up doing is not what they do with ordinary hashes.</P>
  1524. <P>
  1525. <H2><A NAME="how do i reset an each() operation partway through">How do I reset an <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A> operation part-way through?</A></H2>
  1526. <P>Using <CODE>keys %hash</CODE> in scalar context returns the number of keys in
  1527. the hash <EM>and</EM> resets the iterator associated with the hash.  You may
  1528. need to do this if you use <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A> to exit a loop early so that when you
  1529. re-enter it, the hash iterator has been reset.</P>
  1530. <P>
  1531. <H2><A NAME="how can i get the unique keys from two hashes">How can I get the unique keys from two hashes?</A></H2>
  1532. <P>First you extract the keys from the hashes into lists, then solve
  1533. the ``removing duplicates'' problem described above.  For example:</P>
  1534. <PRE>
  1535.     %seen = ();
  1536.     for $element (keys(%foo), keys(%bar)) {
  1537.         $seen{$element}++;
  1538.     }
  1539.     @uniq = keys %seen;</PRE>
  1540. <P>Or more succinctly:</P>
  1541. <PRE>
  1542.     @uniq = keys %{{%foo,%bar}};</PRE>
  1543. <P>Or if you really want to save space:</P>
  1544. <PRE>
  1545.     %seen = ();
  1546.     while (defined ($key = each %foo)) {
  1547.         $seen{$key}++;
  1548.     }
  1549.     while (defined ($key = each %bar)) {
  1550.         $seen{$key}++;
  1551.     }
  1552.     @uniq = keys %seen;</PRE>
  1553. <P>
  1554. <H2><A NAME="how can i store a multidimensional array in a dbm file">How can I store a multidimensional array in a DBM file?</A></H2>
  1555. <P>Either stringify the structure yourself (no fun), or else
  1556. get the MLDBM (which uses Data::Dumper) module from CPAN and layer
  1557. it on top of either DB_File or GDBM_File.</P>
  1558. <P>
  1559. <H2><A NAME="how can i make my hash remember the order i put elements into it">How can I make my hash remember the order I put elements into it?</A></H2>
  1560. <P>Use the Tie::IxHash from CPAN.</P>
  1561. <PRE>
  1562.     use Tie::IxHash;
  1563.     tie(%myhash, Tie::IxHash);
  1564.     for ($i=0; $i<20; $i++) {
  1565.         $myhash{$i} = 2*$i;
  1566.     }
  1567.     @keys = keys %myhash;
  1568.     # @keys = (0,1,2,3,...)</PRE>
  1569. <P>
  1570. <H2><A NAME="why does passing a subroutine an undefined element in a hash create it">Why does passing a subroutine an undefined element in a hash create it?</A></H2>
  1571. <P>If you say something like:</P>
  1572. <PRE>
  1573.     somefunc($hash{"nonesuch key here"});</PRE>
  1574. <P>Then that element ``autovivifies''; that is, it springs into existence
  1575. whether you store something there or not.  That's because functions
  1576. get scalars passed in by reference.  If <CODE>somefunc()</CODE> modifies <CODE>$_[0]</CODE>,
  1577. it has to be ready to write it back into the caller's version.</P>
  1578. <P>This has been fixed as of Perl5.004.</P>
  1579. <P>Normally, merely accessing a key's value for a nonexistent key does
  1580. <EM>not</EM> cause that key to be forever there.  This is different than
  1581. awk's behavior.</P>
  1582. <P>
  1583. <H2><A NAME="how can i make the perl equivalent of a c structure/c++ class/hash or array of hashes or arrays">How can I make the Perl equivalent of a C structure/C++ class/hash or array of hashes or arrays?</A></H2>
  1584. <P>Usually a hash ref, perhaps like this:</P>
  1585. <PRE>
  1586.     $record = {
  1587.         NAME   => "Jason",
  1588.         EMPNO  => 132,
  1589.         TITLE  => "deputy peon",
  1590.         AGE    => 23,
  1591.         SALARY => 37_000,
  1592.         PALS   => [ "Norbert", "Rhys", "Phineas"],
  1593.     };</PRE>
  1594. <P>References are documented in <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A> and the upcoming <A HREF="../../lib/Pod/perlreftut.html">the perlreftut manpage</A>.
  1595. Examples of complex data structures are given in <A HREF="../../lib/Pod/perldsc.html">the perldsc manpage</A> and
  1596. <A HREF="../../lib/Pod/perllol.html">the perllol manpage</A>.  Examples of structures and object-oriented classes are
  1597. in <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A>.</P>
  1598. <P>
  1599. <H2><A NAME="how can i use a reference as a hash key">How can I use a reference as a hash key?</A></H2>
  1600. <P>You can't do this directly, but you could use the standard Tie::Refhash
  1601. module distributed with Perl.</P>
  1602. <P>
  1603. <HR>
  1604. <H1><A NAME="data: misc">Data: Misc</A></H1>
  1605. <P>
  1606. <H2><A NAME="how do i handle binary data correctly">How do I handle binary data correctly?</A></H2>
  1607. <P>Perl is binary clean, so this shouldn't be a problem.  For example,
  1608. this works fine (assuming the files are found):</P>
  1609. <PRE>
  1610.     if (`cat /vmunix` =~ /gzip/) {
  1611.         print "Your kernel is GNU-zip enabled!\n";
  1612.     }</PRE>
  1613. <P>On less elegant (read: Byzantine) systems, however, you have
  1614. to play tedious games with ``text'' versus ``binary'' files.  See
  1615. <A HREF="../../lib/Pod/perlfunc.html#binmode">binmode in the perlfunc manpage</A> or <A HREF="../../lib/Pod/perlopentut.html">the perlopentut manpage</A>.  Most of these ancient-thinking
  1616. systems are curses out of Microsoft, who seem to be committed to putting
  1617. the backward into backward compatibility.</P>
  1618. <P>If you're concerned about 8-bit ASCII data, then see <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A>.</P>
  1619. <P>If you want to deal with multibyte characters, however, there are
  1620. some gotchas.  See the section on Regular Expressions.</P>
  1621. <P>
  1622. <H2><A NAME="how do i determine whether a scalar is a number/whole/integer/float">How do I determine whether a scalar is a number/whole/integer/float?</A></H2>
  1623. <P>Assuming that you don't care about IEEE notations like ``NaN'' or
  1624. ``Infinity'', you probably just want to use a regular expression.</P>
  1625. <PRE>
  1626.    if (/\D/)            { print "has nondigits\n" }
  1627.    if (/^\d+$/)         { print "is a whole number\n" }
  1628.    if (/^-?\d+$/)       { print "is an integer\n" }
  1629.    if (/^[+-]?\d+$/)    { print "is a +/- integer\n" }
  1630.    if (/^-?\d+\.?\d*$/) { print "is a real number\n" }
  1631.    if (/^-?(?:\d+(?:\.\d*)?|\.\d+)$/) { print "is a decimal number" }
  1632.    if (/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/)
  1633.                         { print "a C float" }</PRE>
  1634. <P>If you're on a POSIX system, Perl's supports the <CODE>POSIX::strtod</CODE>
  1635. function.  Its semantics are somewhat cumbersome, so here's a <CODE>getnum</CODE>
  1636. wrapper function for more convenient access.  This function takes
  1637. a string and returns the number it found, or <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> for input that
  1638. isn't a C float.  The <CODE>is_numeric</CODE> function is a front end to <CODE>getnum</CODE>
  1639. if you just want to say, ``Is this a float?''</P>
  1640. <PRE>
  1641.     sub getnum {
  1642.         use POSIX qw(strtod);
  1643.         my $str = shift;
  1644.         $str =~ s/^\s+//;
  1645.         $str =~ s/\s+$//;
  1646.         $! = 0;
  1647.         my($num, $unparsed) = strtod($str);
  1648.         if (($str eq '') || ($unparsed != 0) || $!) {
  1649.             return undef;
  1650.         } else {
  1651.             return $num;
  1652.         } 
  1653.     }</PRE>
  1654. <PRE>
  1655.     sub is_numeric { defined getnum($_[0]) }</PRE>
  1656. <P>Or you could check out the String::Scanf module on CPAN instead.  The
  1657. POSIX module (part of the standard Perl distribution) provides the
  1658. <CODE>strtol</CODE> and <CODE>strtod</CODE> for converting strings to double and longs,
  1659. respectively.</P>
  1660. <P>
  1661. <H2><A NAME="how do i keep persistent data across program calls">How do I keep persistent data across program calls?</A></H2>
  1662. <P>For some specific applications, you can use one of the DBM modules.
  1663. See <A HREF="../../lib/AnyDBM_File.html">the AnyDBM_File manpage</A>.  More generically, you should consult the FreezeThaw,
  1664. Storable, or Class::Eroot modules from CPAN.  Here's one example using
  1665. Storable's <CODE>store</CODE> and <CODE>retrieve</CODE> functions:</P>
  1666. <PRE>
  1667.     use Storable; 
  1668.     store(\%hash, "filename");</PRE>
  1669. <PRE>
  1670.     # later on...  
  1671.     $href = retrieve("filename");        # by ref
  1672.     %hash = %{ retrieve("filename") };   # direct to hash</PRE>
  1673. <P>
  1674. <H2><A NAME="how do i print out or copy a recursive data structure">How do I print out or copy a recursive data structure?</A></H2>
  1675. <P>The Data::Dumper module on CPAN (or the 5.005 release of Perl) is great
  1676. for printing out data structures.  The Storable module, found on CPAN,
  1677. provides a function called <CODE>dclone</CODE> that recursively copies its argument.</P>
  1678. <PRE>
  1679.     use Storable qw(dclone); 
  1680.     $r2 = dclone($r1);</PRE>
  1681. <P>Where $r1 can be a reference to any kind of data structure you'd like.
  1682. It will be deeply copied.  Because <CODE>dclone</CODE> takes and returns references,
  1683. you'd have to add extra punctuation if you had a hash of arrays that
  1684. you wanted to copy.</P>
  1685. <PRE>
  1686.     %newhash = %{ dclone(\%oldhash) };</PRE>
  1687. <P>
  1688. <H2><A NAME="how do i define methods for every class/object">How do I define methods for every class/object?</A></H2>
  1689. <P>Use the UNIVERSAL class (see <A HREF="../../lib/UNIVERSAL.html">the UNIVERSAL manpage</A>).</P>
  1690. <P>
  1691. <H2><A NAME="how do i verify a credit card checksum">How do I verify a credit card checksum?</A></H2>
  1692. <P>Get the Business::CreditCard module from CPAN.</P>
  1693. <P>
  1694. <H2><A NAME="how do i pack arrays of doubles or floats for xs code">How do I pack arrays of doubles or floats for XS code?</A></H2>
  1695. <P>The kgbpack.c code in the PGPLOT module on CPAN does just this.
  1696. If you're doing a lot of float or double processing, consider using
  1697. the PDL module from CPAN instead--it makes number-crunching easy.</P>
  1698. <P>
  1699. <HR>
  1700. <H1><A NAME="author and copyright">AUTHOR AND COPYRIGHT</A></H1>
  1701. <P>Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.
  1702. All rights reserved.</P>
  1703. <P>When included as part of the Standard Version of Perl, or as part of
  1704. its complete documentation whether printed or otherwise, this work
  1705. may be distributed only under the terms of Perl's Artistic License.
  1706. Any distribution of this file or derivatives thereof <EM>outside</EM>
  1707. of that package require that special arrangements be made with
  1708. copyright holder.</P>
  1709. <P>Irrespective of its distribution, all code examples in this file
  1710. are hereby placed into the public domain.  You are permitted and
  1711. encouraged to use this code in your own programs for fun
  1712. or for profit as you see fit.  A simple comment in the code giving
  1713. credit would be courteous but is not required.</P>
  1714. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1715. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1716. <STRONG><P CLASS=block> perlfaq4 - Data Manipulation</P></STRONG>
  1717. </TD></TR>
  1718. </TABLE>
  1719.  
  1720. </BODY>
  1721.  
  1722. </HTML>
  1723.