hand apply whitespace mutiliated patch
[p5sagit/p5-mst-13.2.git] / pod / perlfaq4.pod
CommitLineData
68dc0745 1=head1 NAME
2
fc36a67e 3perlfaq4 - Data Manipulation ($Revision: 1.19 $, $Date: 1997/04/24 22:43:57 $)
68dc0745 4
5=head1 DESCRIPTION
6
7The section of the FAQ answers question related to the manipulation
8of data as numbers, dates, strings, arrays, hashes, and miscellaneous
9data issues.
10
11=head1 Data: Numbers
12
46fc3d4c 13=head2 Why am I getting long decimals (eg, 19.9499999999999) instead of the numbers I should be getting (eg, 19.95)?
14
5a964f20 15The infinite set that a mathematician thinks of as the real numbers can
16only be approximate on a computer, since the computer only has a finite
17number of bits to store an infinite number of, um, numbers.
18
46fc3d4c 19Internally, your computer represents floating-point numbers in binary.
20Floating-point numbers read in from a file, or appearing as literals
21in your program, are converted from their decimal floating-point
22representation (eg, 19.95) to the internal binary representation.
23
24However, 19.95 can't be precisely represented as a binary
25floating-point number, just like 1/3 can't be exactly represented as a
26decimal floating-point number. The computer's binary representation
27of 19.95, therefore, isn't exactly 19.95.
28
29When a floating-point number gets printed, the binary floating-point
30representation is converted back to decimal. These decimal numbers
31are displayed in either the format you specify with printf(), or the
32current output format for numbers (see L<perlvar/"$#"> if you use
33print. C<$#> has a different default value in Perl5 than it did in
34Perl4. Changing C<$#> yourself is deprecated.
35
36This affects B<all> computer languages that represent decimal
37floating-point numbers in binary, not just Perl. Perl provides
38arbitrary-precision decimal numbers with the Math::BigFloat module
39(part of the standard Perl distribution), but mathematical operations
40are consequently slower.
41
42To get rid of the superfluous digits, just use a format (eg,
43C<printf("%.2f", 19.95)>) to get the required precision.
5a964f20 44See L<perlop/"Floating-point Arithmetic">.
46fc3d4c 45
68dc0745 46=head2 Why isn't my octal data interpreted correctly?
47
48Perl only understands octal and hex numbers as such when they occur
49as literals in your program. If they are read in from somewhere and
50assigned, no automatic conversion takes place. You must explicitly
51use oct() or hex() if you want the values converted. oct() interprets
52both hex ("0x350") numbers and octal ones ("0350" or even without the
53leading "0", like "377"), while hex() only converts hexadecimal ones,
54with or without a leading "0x", like "0x255", "3A", "ff", or "deadbeef".
55
56This problem shows up most often when people try using chmod(), mkdir(),
57umask(), or sysopen(), which all want permissions in octal.
58
59 chmod(644, $file); # WRONG -- perl -w catches this
60 chmod(0644, $file); # right
61
5a964f20 62=head2 Does perl have a round function? What about ceil() and floor()? Trig functions?
68dc0745 63
5a964f20 64Remember that int() merely truncates toward 0. For rounding to a certain
65number of digits, sprintf() or printf() is usually the easiest route.
68dc0745 66
67The POSIX module (part of the standard perl distribution) implements
68ceil(), floor(), and a number of other mathematical and trigonometric
69functions.
70
46fc3d4c 71In 5.000 to 5.003 Perls, trigonometry was done in the Math::Complex
72module. With 5.004, the Math::Trig module (part of the standard perl
73distribution) implements the trigonometric functions. Internally it
74uses the Math::Complex module and some functions can break out from
75the real axis into the complex plane, for example the inverse sine of
762.
68dc0745 77
78Rounding in financial applications can have serious implications, and
79the rounding method used should be specified precisely. In these
80cases, it probably pays not to trust whichever system rounding is
81being used by Perl, but to instead implement the rounding function you
82need yourself.
83
84=head2 How do I convert bits into ints?
85
86To turn a string of 1s and 0s like '10110110' into a scalar containing
87its binary value, use the pack() function (documented in
88L<perlfunc/"pack">):
89
90 $decimal = pack('B8', '10110110');
91
92Here's an example of going the other way:
93
94 $binary_string = join('', unpack('B*', "\x29"));
95
96=head2 How do I multiply matrices?
97
98Use the Math::Matrix or Math::MatrixReal modules (available from CPAN)
99or the PDL extension (also available from CPAN).
100
101=head2 How do I perform an operation on a series of integers?
102
103To call a function on each element in an array, and collect the
104results, use:
105
106 @results = map { my_func($_) } @array;
107
108For example:
109
110 @triple = map { 3 * $_ } @single;
111
112To call a function on each element of an array, but ignore the
113results:
114
115 foreach $iterator (@array) {
116 &my_func($iterator);
117 }
118
119To call a function on each integer in a (small) range, you B<can> use:
120
121 @results = map { &my_func($_) } (5 .. 25);
122
123but you should be aware that the C<..> operator creates an array of
124all integers in the range. This can take a lot of memory for large
125ranges. Instead use:
126
127 @results = ();
128 for ($i=5; $i < 500_005; $i++) {
129 push(@results, &my_func($i));
130 }
131
132=head2 How can I output Roman numerals?
133
134Get the http://www.perl.com/CPAN/modules/by-module/Roman module.
135
136=head2 Why aren't my random numbers random?
137
5a964f20 138John von Neumann said, ``Anyone who attempts to generate random numbers by
139deterministic means is, of course, living in a state of sin.''
140
68dc0745 141The short explanation is that you're getting pseudorandom numbers, not
5a964f20 142random ones, because that's how these things work. A longer explanation
143is available on http://www.perl.com/CPAN/doc/FMTEYEWTK/random, courtesy
144of Tom Phoenix.
68dc0745 145
146You should also check out the Math::TrulyRandom module from CPAN.
147
148=head1 Data: Dates
149
150=head2 How do I find the week-of-the-year/day-of-the-year?
151
152The day of the year is in the array returned by localtime() (see
153L<perlfunc/"localtime">):
154
155 $day_of_year = (localtime(time()))[7];
156
157or more legibly (in 5.004 or higher):
158
159 use Time::localtime;
160 $day_of_year = localtime(time())->yday;
161
162You can find the week of the year by dividing this by 7:
163
164 $week_of_year = int($day_of_year / 7);
165
166Of course, this believes that weeks start at zero.
167
168=head2 How can I compare two date strings?
169
170Use the Date::Manip or Date::DateCalc modules from CPAN.
171
172=head2 How can I take a string and turn it into epoch seconds?
173
174If it's a regular enough string that it always has the same format,
175you can split it up and pass the parts to timelocal in the standard
176Time::Local module. Otherwise, you should look into one of the
177Date modules from CPAN.
178
179=head2 How can I find the Julian Day?
180
181Neither Date::Manip nor Date::DateCalc deal with Julian days.
182Instead, there is an example of Julian date calculation in
183http://www.perl.com/CPAN/authors/David_Muir_Sharnoff/modules/Time/JulianDay.pm.gz,
184which should help.
185
5a964f20 186=head2 Does Perl have a year 2000 problem? Is Perl Y2K compliant?
68dc0745 187
5a964f20 188Perl is just as Y2K compliant as your pencil--no more, and no less.
189The date and time functions supplied with perl (gmtime and localtime)
190supply adequate information to determine the year well beyond 2000 (2038
191is when trouble strikes). The year returned by these functions when used
192in an array context is the year minus 1900. For years between 1910 and
1931999 this I<happens> to be a 2-digit decimal number. To avoid the year
1942000 problem simply do not treat the year as a 2-digit number. It isn't.
68dc0745 195
5a964f20 196When gmtime() and localtime() are used in scalar context they return
68dc0745 197a timestamp string that contains a fully-expanded year. For example,
198C<$timestamp = gmtime(1005613200)> sets $timestamp to "Tue Nov 13 01:00:00
1992001". There's no year 2000 problem here.
200
5a964f20 201That doesn't mean that Perl can't be used to create non-Y2K compliant
202programs. It can. But so can your pencil. It's the fault of the user,
203not the language. At the risk of inflaming the NRA: ``Perl doesn't
204break Y2K, people do.'' See http://language.perl.com/news/y2k.html for
205a longer exposition.
206
68dc0745 207=head1 Data: Strings
208
209=head2 How do I validate input?
210
211The answer to this question is usually a regular expression, perhaps
5a964f20 212with auxiliary logic. See the more specific questions (numbers, mail
68dc0745 213addresses, etc.) for details.
214
215=head2 How do I unescape a string?
216
217It depends just what you mean by "escape". URL escapes are dealt with
218in L<perlfaq9>. Shell escapes with the backslash (\)
219character are removed with:
220
221 s/\\(.)/$1/g;
222
223Note that this won't expand \n or \t or any other special escapes.
224
225=head2 How do I remove consecutive pairs of characters?
226
227To turn "abbcccd" into "abccd":
228
229 s/(.)\1/$1/g;
230
231=head2 How do I expand function calls in a string?
232
233This is documented in L<perlref>. In general, this is fraught with
234quoting and readability problems, but it is possible. To interpolate
5a964f20 235a subroutine call (in list context) into a string:
68dc0745 236
237 print "My sub returned @{[mysub(1,2,3)]} that time.\n";
238
239If you prefer scalar context, similar chicanery is also useful for
240arbitrary expressions:
241
242 print "That yields ${\($n + 5)} widgets\n";
243
46fc3d4c 244See also "How can I expand variables in text strings?" in this section
245of the FAQ.
246
68dc0745 247=head2 How do I find matching/nesting anything?
248
249This isn't something that can be tackled in one regular expression, no
250matter how complicated. To find something between two single characters,
251a pattern like C</x([^x]*)x/> will get the intervening bits in $1. For
252multiple ones, then something more like C</alpha(.*?)omega/> would
253be needed. But none of these deals with nested patterns, nor can they.
254For that you'll have to write a parser.
255
5a964f20 256One destructive, inside-out approach that you might try is to pull
257out the smallest nesting parts one at a time:
258
259 while (s/BEGIN(.*?)END//gs) {
260 # do something with $1
261 }
262
68dc0745 263=head2 How do I reverse a string?
264
5a964f20 265Use reverse() in scalar context, as documented in
68dc0745 266L<perlfunc/reverse>.
267
268 $reversed = reverse $string;
269
270=head2 How do I expand tabs in a string?
271
5a964f20 272You can do it yourself:
68dc0745 273
274 1 while $string =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e;
275
276Or you can just use the Text::Tabs module (part of the standard perl
277distribution).
278
279 use Text::Tabs;
280 @expanded_lines = expand(@lines_with_tabs);
281
282=head2 How do I reformat a paragraph?
283
284Use Text::Wrap (part of the standard perl distribution):
285
286 use Text::Wrap;
287 print wrap("\t", ' ', @paragraphs);
288
46fc3d4c 289The paragraphs you give to Text::Wrap may not contain embedded
290newlines. Text::Wrap doesn't justify the lines (flush-right).
291
68dc0745 292=head2 How can I access/change the first N letters of a string?
293
294There are many ways. If you just want to grab a copy, use
295substr:
296
297 $first_byte = substr($a, 0, 1);
298
299If you want to modify part of a string, the simplest way is often to
300use substr() as an lvalue:
301
302 substr($a, 0, 3) = "Tom";
303
304Although those with a regexp kind of thought process will likely prefer
305
306 $a =~ s/^.../Tom/;
307
308=head2 How do I change the Nth occurrence of something?
309
310You have to keep track. For example, let's say you want
311to change the fifth occurrence of "whoever" or "whomever"
3fe9a6f1 312into "whosoever" or "whomsoever", case insensitively.
68dc0745 313
314 $count = 0;
315 s{((whom?)ever)}{
316 ++$count == 5 # is it the 5th?
317 ? "${2}soever" # yes, swap
318 : $1 # renege and leave it there
319 }igex;
320
5a964f20 321In the more general case, you can use the C</g> modifier in a C<while>
322loop, keeping count of matches.
323
324 $WANT = 3;
325 $count = 0;
326 while (/(\w+)\s+fish\b/gi) {
327 if (++$count == $WANT) {
328 print "The third fish is a $1 one.\n";
329 # Warning: don't `last' out of this loop
330 }
331 }
332
333That prints out: "The third fish is a red one." You can also use a
334repetition count and repeated pattern like this:
335
336 /(?:\w+\s+fish\s+){2}(\w+)\s+fish/i;
337
68dc0745 338=head2 How can I count the number of occurrences of a substring within a string?
339
340There are a number of ways, with varying efficiency: If you want a
341count of a certain single character (X) within a string, you can use the
342C<tr///> function like so:
343
344 $string = "ThisXlineXhasXsomeXx'sXinXit":
345 $count = ($string =~ tr/X//);
46fc3d4c 346 print "There are $count X charcters in the string";
68dc0745 347
348This is fine if you are just looking for a single character. However,
349if you are trying to count multiple character substrings within a
350larger string, C<tr///> won't work. What you can do is wrap a while()
351loop around a global pattern match. For example, let's count negative
352integers:
353
354 $string = "-9 55 48 -2 23 -76 4 14 -44";
355 while ($string =~ /-\d+/g) { $count++ }
356 print "There are $count negative numbers in the string";
357
358=head2 How do I capitalize all the words on one line?
359
360To make the first letter of each word upper case:
3fe9a6f1 361
68dc0745 362 $line =~ s/\b(\w)/\U$1/g;
363
46fc3d4c 364This has the strange effect of turning "C<don't do it>" into "C<Don'T
365Do It>". Sometimes you might want this, instead (Suggested by Brian
366Foy E<lt>comdog@computerdog.comE<gt>):
367
368 $string =~ s/ (
369 (^\w) #at the beginning of the line
370 | # or
371 (\s\w) #preceded by whitespace
372 )
373 /\U$1/xg;
374 $string =~ /([\w']+)/\u\L$1/g;
375
68dc0745 376To make the whole line upper case:
3fe9a6f1 377
68dc0745 378 $line = uc($line);
379
380To force each word to be lower case, with the first letter upper case:
3fe9a6f1 381
68dc0745 382 $line =~ s/(\w+)/\u\L$1/g;
383
5a964f20 384You can (and probably should) enable locale awareness of those
385characters by placing a C<use locale> pragma in your program.
386See L<perllocale> for endless details.
387
68dc0745 388=head2 How can I split a [character] delimited string except when inside
389[character]? (Comma-separated files)
390
391Take the example case of trying to split a string that is comma-separated
392into its different fields. (We'll pretend you said comma-separated, not
393comma-delimited, which is different and almost never what you mean.) You
394can't use C<split(/,/)> because you shouldn't split if the comma is inside
395quotes. For example, take a data line like this:
396
397 SAR001,"","Cimetrix, Inc","Bob Smith","CAM",N,8,1,0,7,"Error, Core Dumped"
398
399Due to the restriction of the quotes, this is a fairly complex
400problem. Thankfully, we have Jeffrey Friedl, author of a highly
401recommended book on regular expressions, to handle these for us. He
402suggests (assuming your string is contained in $text):
403
404 @new = ();
405 push(@new, $+) while $text =~ m{
406 "([^\"\\]*(?:\\.[^\"\\]*)*)",? # groups the phrase inside the quotes
407 | ([^,]+),?
408 | ,
409 }gx;
410 push(@new, undef) if substr($text,-1,1) eq ',';
411
46fc3d4c 412If you want to represent quotation marks inside a
413quotation-mark-delimited field, escape them with backslashes (eg,
2ceaccd7 414C<"like \"this\"">. Unescaping them is a task addressed earlier in
46fc3d4c 415this section.
416
68dc0745 417Alternatively, the Text::ParseWords module (part of the standard perl
418distribution) lets you say:
419
420 use Text::ParseWords;
421 @new = quotewords(",", 0, $text);
422
423=head2 How do I strip blank space from the beginning/end of a string?
424
5a964f20 425Although the simplest approach would seem to be:
68dc0745 426
427 $string =~ s/^\s*(.*?)\s*$/$1/;
428
5a964f20 429This is unneccesarily slow, destructive, and fails with embedded newlines.
430It is much better faster to do this in two steps:
68dc0745 431
432 $string =~ s/^\s+//;
433 $string =~ s/\s+$//;
434
435Or more nicely written as:
436
437 for ($string) {
438 s/^\s+//;
439 s/\s+$//;
440 }
441
5a964f20 442This idiom takes advantage of the for(each) loop's aliasing
443behavior to factor out common code. You can do this
444on several strings at once, or arrays, or even the
445values of a hash if you use a slide:
446
447 # trim whitespace in the scalar, the array,
448 # and all the values in the hash
449 foreach ($scalar, @array, @hash{keys %hash}) {
450 s/^\s+//;
451 s/\s+$//;
452 }
453
68dc0745 454=head2 How do I extract selected columns from a string?
455
456Use substr() or unpack(), both documented in L<perlfunc>.
5a964f20 457If you prefer thinking in terms of columns instead of widths,
458you can use this kind of thing:
459
460 # determine the unpack format needed to split Linux ps output
461 # arguments are cut columns
462 my $fmt = cut2fmt(8, 14, 20, 26, 30, 34, 41, 47, 59, 63, 67, 72);
463
464 sub cut2fmt {
465 my(@positions) = @_;
466 my $template = '';
467 my $lastpos = 1;
468 for my $place (@positions) {
469 $template .= "A" . ($place - $lastpos) . " ";
470 $lastpos = $place;
471 }
472 $template .= "A*";
473 return $template;
474 }
68dc0745 475
476=head2 How do I find the soundex value of a string?
477
478Use the standard Text::Soundex module distributed with perl.
479
480=head2 How can I expand variables in text strings?
481
482Let's assume that you have a string like:
483
484 $text = 'this has a $foo in it and a $bar';
5a964f20 485
486If those were both global variables, then this would
487suffice:
488
68dc0745 489 $text =~ s/\$(\w+)/${$1}/g;
490
5a964f20 491But since they are probably lexicals, or at least, they could
492be, you'd have to do this:
68dc0745 493
494 $text =~ s/(\$\w+)/$1/eeg;
5a964f20 495 die if $@; # needed on /ee, not /e
68dc0745 496
5a964f20 497It's probably better in the general case to treat those
498variables as entries in some special hash. For example:
499
500 %user_defs = (
501 foo => 23,
502 bar => 19,
503 );
504 $text =~ s/\$(\w+)/$user_defs{$1}/g;
68dc0745 505
46fc3d4c 506See also "How do I expand function calls in a string?" in this section
507of the FAQ.
508
68dc0745 509=head2 What's wrong with always quoting "$vars"?
510
511The problem is that those double-quotes force stringification,
512coercing numbers and references into strings, even when you
513don't want them to be.
514
515If you get used to writing odd things like these:
516
517 print "$var"; # BAD
518 $new = "$old"; # BAD
519 somefunc("$var"); # BAD
520
521You'll be in trouble. Those should (in 99.8% of the cases) be
522the simpler and more direct:
523
524 print $var;
525 $new = $old;
526 somefunc($var);
527
528Otherwise, besides slowing you down, you're going to break code when
529the thing in the scalar is actually neither a string nor a number, but
530a reference:
531
532 func(\@array);
533 sub func {
534 my $aref = shift;
535 my $oref = "$aref"; # WRONG
536 }
537
538You can also get into subtle problems on those few operations in Perl
539that actually do care about the difference between a string and a
540number, such as the magical C<++> autoincrement operator or the
541syscall() function.
542
5a964f20 543Stringification also destroys arrays.
544
545 @lines = `command`;
546 print "@lines"; # WRONG - extra blanks
547 print @lines; # right
548
68dc0745 549=head2 Why don't my <<HERE documents work?
550
551Check for these three things:
552
553=over 4
554
555=item 1. There must be no space after the << part.
556
557=item 2. There (probably) should be a semicolon at the end.
558
559=item 3. You can't (easily) have any space in front of the tag.
560
561=back
562
5a964f20 563If you want to indent the text in the here document, you
564can do this:
565
566 # all in one
567 ($VAR = <<HERE_TARGET) =~ s/^\s+//gm;
568 your text
569 goes here
570 HERE_TARGET
571
572But the HERE_TARGET must still be flush against the margin.
573If you want that indented also, you'll have to quote
574in the indentation.
575
576 ($quote = <<' FINIS') =~ s/^\s+//gm;
577 ...we will have peace, when you and all your works have
578 perished--and the works of your dark master to whom you
579 would deliver us. You are a liar, Saruman, and a corrupter
580 of men's hearts. --Theoden in /usr/src/perl/taint.c
581 FINIS
582 $quote =~ s/\s*--/\n--/;
583
584A nice general-purpose fixer-upper function for indented here documents
585follows. It expects to be called with a here document as its argument.
586It looks to see whether each line begins with a common substring, and
587if so, strips that off. Otherwise, it takes the amount of leading
588white space found on the first line and removes that much off each
589subsequent line.
590
591 sub fix {
592 local $_ = shift;
593 my ($white, $leader); # common white space and common leading string
594 if (/^\s*(?:([^\w\s]+)(\s*).*\n)(?:\s*\1\2?.*\n)+$/) {
595 ($white, $leader) = ($2, quotemeta($1));
596 } else {
597 ($white, $leader) = (/^(\s+)/, '');
598 }
599 s/^\s*?$leader(?:$white)?//gm;
600 return $_;
601 }
602
603This owrks with leading special strings, dynamically determined:
604
605 $remember_the_main = fix<<' MAIN_INTERPRETER_LOOP';
606 @@@ int
607 @@@ runops() {
608 @@@ SAVEI32(runlevel);
609 @@@ runlevel++;
610 @@@ while ( op = (*op->op_ppaddr)() ) ;
611 @@@ TAINT_NOT;
612 @@@ return 0;
613 @@@ }
614 MAIN_INTERPRETER_LOOP
615
616Or with a fixed amount of leading white space, with remaining
617indentation correctly preserved:
618
619 $poem = fix<<EVER_ON_AND_ON;
620 Now far ahead the Road has gone,
621 And I must follow, if I can,
622 Pursuing it with eager feet,
623 Until it joins some larger way
624 Where many paths and errands meet.
625 And whither then? I cannot say.
626 --Bilbo in /usr/src/perl/pp_ctl.c
627 EVER_ON_AND_ON
628
68dc0745 629=head1 Data: Arrays
630
631=head2 What is the difference between $array[1] and @array[1]?
632
633The former is a scalar value, the latter an array slice, which makes
634it a list with one (scalar) value. You should use $ when you want a
635scalar value (most of the time) and @ when you want a list with one
636scalar value in it (very, very rarely; nearly never, in fact).
637
638Sometimes it doesn't make a difference, but sometimes it does.
639For example, compare:
640
641 $good[0] = `some program that outputs several lines`;
642
643with
644
645 @bad[0] = `same program that outputs several lines`;
646
647The B<-w> flag will warn you about these matters.
648
649=head2 How can I extract just the unique elements of an array?
650
651There are several possible ways, depending on whether the array is
652ordered and whether you wish to preserve the ordering.
653
654=over 4
655
656=item a) If @in is sorted, and you want @out to be sorted:
5a964f20 657(this assumes all true values in the array)
68dc0745 658
659 $prev = 'nonesuch';
660 @out = grep($_ ne $prev && ($prev = $_), @in);
661
662This is nice in that it doesn't use much extra memory,
663simulating uniq(1)'s behavior of removing only adjacent
664duplicates.
665
666=item b) If you don't know whether @in is sorted:
667
668 undef %saw;
669 @out = grep(!$saw{$_}++, @in);
670
671=item c) Like (b), but @in contains only small integers:
672
673 @out = grep(!$saw[$_]++, @in);
674
675=item d) A way to do (b) without any loops or greps:
676
677 undef %saw;
678 @saw{@in} = ();
679 @out = sort keys %saw; # remove sort if undesired
680
681=item e) Like (d), but @in contains only small positive integers:
682
683 undef @ary;
684 @ary[@in] = @in;
685 @out = @ary;
686
687=back
688
5a964f20 689=head2 How can I tell whether a list or array contains a certain element?
690
691Hearing the word "in" is an I<in>dication that you probably should have
692used a hash, not a list or array, to store your data. Hashes are
693designed to answer this question quickly and efficiently. Arrays aren't.
68dc0745 694
5a964f20 695That being said, there are several ways to approach this. If you
696are going to make this query many times over arbitrary string values,
697the fastest way is probably to invert the original array and keep an
68dc0745 698associative array lying about whose keys are the first array's values.
699
700 @blues = qw/azure cerulean teal turquoise lapis-lazuli/;
701 undef %is_blue;
702 for (@blues) { $is_blue{$_} = 1 }
703
704Now you can check whether $is_blue{$some_color}. It might have been a
705good idea to keep the blues all in a hash in the first place.
706
707If the values are all small integers, you could use a simple indexed
708array. This kind of an array will take up less space:
709
710 @primes = (2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31);
711 undef @is_tiny_prime;
712 for (@primes) { $is_tiny_prime[$_] = 1; }
713
714Now you check whether $is_tiny_prime[$some_number].
715
716If the values in question are integers instead of strings, you can save
717quite a lot of space by using bit strings instead:
718
719 @articles = ( 1..10, 150..2000, 2017 );
720 undef $read;
7b8d334a 721 for (@articles) { vec($read,$_,1) = 1 }
68dc0745 722
723Now check whether C<vec($read,$n,1)> is true for some C<$n>.
724
725Please do not use
726
727 $is_there = grep $_ eq $whatever, @array;
728
729or worse yet
730
731 $is_there = grep /$whatever/, @array;
732
733These are slow (checks every element even if the first matches),
734inefficient (same reason), and potentially buggy (what if there are
735regexp characters in $whatever?).
736
737=head2 How do I compute the difference of two arrays? How do I compute the intersection of two arrays?
738
739Use a hash. Here's code to do both and more. It assumes that
740each element is unique in a given array:
741
742 @union = @intersection = @difference = ();
743 %count = ();
744 foreach $element (@array1, @array2) { $count{$element}++ }
745 foreach $element (keys %count) {
746 push @union, $element;
747 push @{ $count{$element} > 1 ? \@intersection : \@difference }, $element;
748 }
749
750=head2 How do I find the first array element for which a condition is true?
751
752You can use this if you care about the index:
753
754 for ($i=0; $i < @array; $i++) {
755 if ($array[$i] eq "Waldo") {
756 $found_index = $i;
757 last;
758 }
759 }
760
761Now C<$found_index> has what you want.
762
763=head2 How do I handle linked lists?
764
765In general, you usually don't need a linked list in Perl, since with
766regular arrays, you can push and pop or shift and unshift at either end,
5a964f20 767or you can use splice to add and/or remove arbitrary number of elements at
768arbitrary points. Both pop and shift are both O(1) operations on perl's
769dynamic arrays. In the absence of shifts and pops, push in general
770needs to reallocate on the order every log(N) times, and unshift will
771need to copy pointers each time.
68dc0745 772
773If you really, really wanted, you could use structures as described in
774L<perldsc> or L<perltoot> and do just what the algorithm book tells you
775to do.
776
777=head2 How do I handle circular lists?
778
779Circular lists could be handled in the traditional fashion with linked
780lists, or you could just do something like this with an array:
781
782 unshift(@array, pop(@array)); # the last shall be first
783 push(@array, shift(@array)); # and vice versa
784
785=head2 How do I shuffle an array randomly?
786
5a964f20 787Use this:
788
789 # fisher_yates_shuffle( \@array ) :
790 # generate a random permutation of @array in place
791 sub fisher_yates_shuffle {
792 my $array = shift;
793 my $i;
794 for ($i = @$array; --$i; ) {
795 my $j = int rand ($i+1);
796 next if $i == $j;
797 @$array[$i,$j] = @$array[$j,$i];
798 }
799 }
800
801 fisher_yates_shuffle( \@array ); # permutes @array in place
802
803You've probably seen shuffling algorithms that works using splice,
68dc0745 804randomly picking another element to swap the current element with:
805
806 srand;
807 @new = ();
808 @old = 1 .. 10; # just a demo
809 while (@old) {
810 push(@new, splice(@old, rand @old, 1));
811 }
812
5a964f20 813This is bad because splice is already O(N), and since you do it N times,
814you just invented a quadratic algorithm; that is, O(N**2). This does
815not scale, although Perl is so efficient that you probably won't notice
816this until you have rather largish arrays.
68dc0745 817
818=head2 How do I process/modify each element of an array?
819
820Use C<for>/C<foreach>:
821
822 for (@lines) {
5a964f20 823 s/foo/bar/; # change that word
824 y/XZ/ZX/; # swap those letters
68dc0745 825 }
826
827Here's another; let's compute spherical volumes:
828
5a964f20 829 for (@volumes = @radii) { # @volumes has changed parts
68dc0745 830 $_ **= 3;
831 $_ *= (4/3) * 3.14159; # this will be constant folded
832 }
833
5a964f20 834If you want to do the same thing to modify the values of the hash,
835you may not use the C<values> function, oddly enough. You need a slice:
836
837 for $orbit ( @orbits{keys %orbits} ) {
838 ($orbit **= 3) *= (4/3) * 3.14159;
839 }
840
68dc0745 841=head2 How do I select a random element from an array?
842
843Use the rand() function (see L<perlfunc/rand>):
844
5a964f20 845 # at the top of the program:
68dc0745 846 srand; # not needed for 5.004 and later
5a964f20 847
848 # then later on
68dc0745 849 $index = rand @array;
850 $element = $array[$index];
851
5a964f20 852Make sure you I<only call srand once per program, if then>.
853If you are calling it more than once (such as before each
854call to rand), you're almost certainly doing something wrong.
855
68dc0745 856=head2 How do I permute N elements of a list?
857
858Here's a little program that generates all permutations
859of all the words on each line of input. The algorithm embodied
5a964f20 860in the permute() function should work on any list:
68dc0745 861
862 #!/usr/bin/perl -n
5a964f20 863 # tsc-permute: permute each word of input
864 permute([split], []);
865 sub permute {
866 my @items = @{ $_[0] };
867 my @perms = @{ $_[1] };
868 unless (@items) {
869 print "@perms\n";
68dc0745 870 } else {
5a964f20 871 my(@newitems,@newperms,$i);
872 foreach $i (0 .. $#items) {
873 @newitems = @items;
874 @newperms = @perms;
875 unshift(@newperms, splice(@newitems, $i, 1));
876 permute([@newitems], [@newperms]);
68dc0745 877 }
878 }
879 }
880
881=head2 How do I sort an array by (anything)?
882
883Supply a comparison function to sort() (described in L<perlfunc/sort>):
884
885 @list = sort { $a <=> $b } @list;
886
887The default sort function is cmp, string comparison, which would
888sort C<(1, 2, 10)> into C<(1, 10, 2)>. C<E<lt>=E<gt>>, used above, is
889the numerical comparison operator.
890
891If you have a complicated function needed to pull out the part you
892want to sort on, then don't do it inside the sort function. Pull it
893out first, because the sort BLOCK can be called many times for the
894same element. Here's an example of how to pull out the first word
895after the first number on each item, and then sort those words
896case-insensitively.
897
898 @idx = ();
899 for (@data) {
900 ($item) = /\d+\s*(\S+)/;
901 push @idx, uc($item);
902 }
903 @sorted = @data[ sort { $idx[$a] cmp $idx[$b] } 0 .. $#idx ];
904
905Which could also be written this way, using a trick
906that's come to be known as the Schwartzian Transform:
907
908 @sorted = map { $_->[0] }
909 sort { $a->[1] cmp $b->[1] }
46fc3d4c 910 map { [ $_, uc((/\d+\s*(\S+)/ )[0] ] } @data;
68dc0745 911
912If you need to sort on several fields, the following paradigm is useful.
913
914 @sorted = sort { field1($a) <=> field1($b) ||
915 field2($a) cmp field2($b) ||
916 field3($a) cmp field3($b)
917 } @data;
918
919This can be conveniently combined with precalculation of keys as given
920above.
921
922See http://www.perl.com/CPAN/doc/FMTEYEWTK/sort.html for more about
923this approach.
924
925See also the question below on sorting hashes.
926
927=head2 How do I manipulate arrays of bits?
928
929Use pack() and unpack(), or else vec() and the bitwise operations.
930
931For example, this sets $vec to have bit N set if $ints[N] was set:
932
933 $vec = '';
934 foreach(@ints) { vec($vec,$_,1) = 1 }
935
936And here's how, given a vector in $vec, you can
937get those bits into your @ints array:
938
939 sub bitvec_to_list {
940 my $vec = shift;
941 my @ints;
942 # Find null-byte density then select best algorithm
943 if ($vec =~ tr/\0// / length $vec > 0.95) {
944 use integer;
945 my $i;
946 # This method is faster with mostly null-bytes
947 while($vec =~ /[^\0]/g ) {
948 $i = -9 + 8 * pos $vec;
949 push @ints, $i if vec($vec, ++$i, 1);
950 push @ints, $i if vec($vec, ++$i, 1);
951 push @ints, $i if vec($vec, ++$i, 1);
952 push @ints, $i if vec($vec, ++$i, 1);
953 push @ints, $i if vec($vec, ++$i, 1);
954 push @ints, $i if vec($vec, ++$i, 1);
955 push @ints, $i if vec($vec, ++$i, 1);
956 push @ints, $i if vec($vec, ++$i, 1);
957 }
958 } else {
959 # This method is a fast general algorithm
960 use integer;
961 my $bits = unpack "b*", $vec;
962 push @ints, 0 if $bits =~ s/^(\d)// && $1;
963 push @ints, pos $bits while($bits =~ /1/g);
964 }
965 return \@ints;
966 }
967
968This method gets faster the more sparse the bit vector is.
969(Courtesy of Tim Bunce and Winfried Koenig.)
970
971=head2 Why does defined() return true on empty arrays and hashes?
972
973See L<perlfunc/defined> in the 5.004 release or later of Perl.
974
975=head1 Data: Hashes (Associative Arrays)
976
977=head2 How do I process an entire hash?
978
979Use the each() function (see L<perlfunc/each>) if you don't care
980whether it's sorted:
981
5a964f20 982 while ( ($key, $value) = each %hash) {
68dc0745 983 print "$key = $value\n";
984 }
985
986If you want it sorted, you'll have to use foreach() on the result of
987sorting the keys as shown in an earlier question.
988
989=head2 What happens if I add or remove keys from a hash while iterating over it?
990
991Don't do that.
992
993=head2 How do I look up a hash element by value?
994
995Create a reverse hash:
996
997 %by_value = reverse %by_key;
998 $key = $by_value{$value};
999
1000That's not particularly efficient. It would be more space-efficient
1001to use:
1002
1003 while (($key, $value) = each %by_key) {
1004 $by_value{$value} = $key;
1005 }
1006
1007If your hash could have repeated values, the methods above will only
1008find one of the associated keys. This may or may not worry you.
1009
1010=head2 How can I know how many entries are in a hash?
1011
1012If you mean how many keys, then all you have to do is
1013take the scalar sense of the keys() function:
1014
3fe9a6f1 1015 $num_keys = scalar keys %hash;
68dc0745 1016
1017In void context it just resets the iterator, which is faster
1018for tied hashes.
1019
1020=head2 How do I sort a hash (optionally by value instead of key)?
1021
1022Internally, hashes are stored in a way that prevents you from imposing
1023an order on key-value pairs. Instead, you have to sort a list of the
1024keys or values:
1025
1026 @keys = sort keys %hash; # sorted by key
1027 @keys = sort {
1028 $hash{$a} cmp $hash{$b}
1029 } keys %hash; # and by value
1030
1031Here we'll do a reverse numeric sort by value, and if two keys are
1032identical, sort by length of key, and if that fails, by straight ASCII
1033comparison of the keys (well, possibly modified by your locale -- see
1034L<perllocale>).
1035
1036 @keys = sort {
1037 $hash{$b} <=> $hash{$a}
1038 ||
1039 length($b) <=> length($a)
1040 ||
1041 $a cmp $b
1042 } keys %hash;
1043
1044=head2 How can I always keep my hash sorted?
1045
1046You can look into using the DB_File module and tie() using the
1047$DB_BTREE hash bindings as documented in L<DB_File/"In Memory Databases">.
5a964f20 1048The Tie::IxHash module from CPAN might also be instructive.
68dc0745 1049
1050=head2 What's the difference between "delete" and "undef" with hashes?
1051
1052Hashes are pairs of scalars: the first is the key, the second is the
1053value. The key will be coerced to a string, although the value can be
1054any kind of scalar: string, number, or reference. If a key C<$key> is
1055present in the array, C<exists($key)> will return true. The value for
1056a given key can be C<undef>, in which case C<$array{$key}> will be
1057C<undef> while C<$exists{$key}> will return true. This corresponds to
1058(C<$key>, C<undef>) being in the hash.
1059
1060Pictures help... here's the C<%ary> table:
1061
1062 keys values
1063 +------+------+
1064 | a | 3 |
1065 | x | 7 |
1066 | d | 0 |
1067 | e | 2 |
1068 +------+------+
1069
1070And these conditions hold
1071
1072 $ary{'a'} is true
1073 $ary{'d'} is false
1074 defined $ary{'d'} is true
1075 defined $ary{'a'} is true
1076 exists $ary{'a'} is true (perl5 only)
1077 grep ($_ eq 'a', keys %ary) is true
1078
1079If you now say
1080
1081 undef $ary{'a'}
1082
1083your table now reads:
1084
1085
1086 keys values
1087 +------+------+
1088 | a | undef|
1089 | x | 7 |
1090 | d | 0 |
1091 | e | 2 |
1092 +------+------+
1093
1094and these conditions now hold; changes in caps:
1095
1096 $ary{'a'} is FALSE
1097 $ary{'d'} is false
1098 defined $ary{'d'} is true
1099 defined $ary{'a'} is FALSE
1100 exists $ary{'a'} is true (perl5 only)
1101 grep ($_ eq 'a', keys %ary) is true
1102
1103Notice the last two: you have an undef value, but a defined key!
1104
1105Now, consider this:
1106
1107 delete $ary{'a'}
1108
1109your table now reads:
1110
1111 keys values
1112 +------+------+
1113 | x | 7 |
1114 | d | 0 |
1115 | e | 2 |
1116 +------+------+
1117
1118and these conditions now hold; changes in caps:
1119
1120 $ary{'a'} is false
1121 $ary{'d'} is false
1122 defined $ary{'d'} is true
1123 defined $ary{'a'} is false
1124 exists $ary{'a'} is FALSE (perl5 only)
1125 grep ($_ eq 'a', keys %ary) is FALSE
1126
1127See, the whole entry is gone!
1128
1129=head2 Why don't my tied hashes make the defined/exists distinction?
1130
1131They may or may not implement the EXISTS() and DEFINED() methods
1132differently. For example, there isn't the concept of undef with hashes
1133that are tied to DBM* files. This means the true/false tables above
1134will give different results when used on such a hash. It also means
1135that exists and defined do the same thing with a DBM* file, and what
1136they end up doing is not what they do with ordinary hashes.
1137
1138=head2 How do I reset an each() operation part-way through?
1139
5a964f20 1140Using C<keys %hash> in scalar context returns the number of keys in
68dc0745 1141the hash I<and> resets the iterator associated with the hash. You may
1142need to do this if you use C<last> to exit a loop early so that when you
46fc3d4c 1143re-enter it, the hash iterator has been reset.
68dc0745 1144
1145=head2 How can I get the unique keys from two hashes?
1146
1147First you extract the keys from the hashes into arrays, and then solve
1148the uniquifying the array problem described above. For example:
1149
1150 %seen = ();
1151 for $element (keys(%foo), keys(%bar)) {
1152 $seen{$element}++;
1153 }
1154 @uniq = keys %seen;
1155
1156Or more succinctly:
1157
1158 @uniq = keys %{{%foo,%bar}};
1159
1160Or if you really want to save space:
1161
1162 %seen = ();
1163 while (defined ($key = each %foo)) {
1164 $seen{$key}++;
1165 }
1166 while (defined ($key = each %bar)) {
1167 $seen{$key}++;
1168 }
1169 @uniq = keys %seen;
1170
1171=head2 How can I store a multidimensional array in a DBM file?
1172
1173Either stringify the structure yourself (no fun), or else
1174get the MLDBM (which uses Data::Dumper) module from CPAN and layer
1175it on top of either DB_File or GDBM_File.
1176
1177=head2 How can I make my hash remember the order I put elements into it?
1178
1179Use the Tie::IxHash from CPAN.
1180
46fc3d4c 1181 use Tie::IxHash;
1182 tie(%myhash, Tie::IxHash);
1183 for ($i=0; $i<20; $i++) {
1184 $myhash{$i} = 2*$i;
1185 }
1186 @keys = keys %myhash;
1187 # @keys = (0,1,2,3,...)
1188
68dc0745 1189=head2 Why does passing a subroutine an undefined element in a hash create it?
1190
1191If you say something like:
1192
1193 somefunc($hash{"nonesuch key here"});
1194
1195Then that element "autovivifies"; that is, it springs into existence
1196whether you store something there or not. That's because functions
1197get scalars passed in by reference. If somefunc() modifies C<$_[0]>,
1198it has to be ready to write it back into the caller's version.
1199
1200This has been fixed as of perl5.004.
1201
1202Normally, merely accessing a key's value for a nonexistent key does
1203I<not> cause that key to be forever there. This is different than
1204awk's behavior.
1205
fc36a67e 1206=head2 How can I make the Perl equivalent of a C structure/C++ class/hash or array of hashes or arrays?
68dc0745 1207
1208Use references (documented in L<perlref>). Examples of complex data
1209structures are given in L<perldsc> and L<perllol>. Examples of
1210structures and object-oriented classes are in L<perltoot>.
1211
1212=head2 How can I use a reference as a hash key?
1213
1214You can't do this directly, but you could use the standard Tie::Refhash
1215module distributed with perl.
1216
1217=head1 Data: Misc
1218
1219=head2 How do I handle binary data correctly?
1220
1221Perl is binary clean, so this shouldn't be a problem. For example,
1222this works fine (assuming the files are found):
1223
1224 if (`cat /vmunix` =~ /gzip/) {
1225 print "Your kernel is GNU-zip enabled!\n";
1226 }
1227
1228On some systems, however, you have to play tedious games with "text"
1229versus "binary" files. See L<perlfunc/"binmode">.
1230
1231If you're concerned about 8-bit ASCII data, then see L<perllocale>.
1232
54310121 1233If you want to deal with multibyte characters, however, there are
68dc0745 1234some gotchas. See the section on Regular Expressions.
1235
1236=head2 How do I determine whether a scalar is a number/whole/integer/float?
1237
1238Assuming that you don't care about IEEE notations like "NaN" or
1239"Infinity", you probably just want to use a regular expression.
1240
1241 warn "has nondigits" if /\D/;
5a964f20 1242 warn "not a natural number" unless /^\d+$/; # rejects -3
1243 warn "not an integer" unless /^-?\d+$/; # rejects +3
54310121 1244 warn "not an integer" unless /^[+-]?\d+$/;
68dc0745 1245 warn "not a decimal number" unless /^-?\d+\.?\d*$/; # rejects .2
1246 warn "not a decimal number" unless /^-?(?:\d+(?:\.\d*)?|\.\d+)$/;
1247 warn "not a C float"
1248 unless /^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/;
1249
5a964f20 1250If you're on a POSIX system, Perl's supports the C<POSIX::strtod>
1251function. Its semantics are somewhat cumbersome, so here's a C<getnum>
1252wrapper function for more convenient access. This function takes
1253a string and returns the number it found, or C<undef> for input that
1254isn't a C float. The C<is_numeric> function is a front end to C<getnum>
1255if you just want to say, ``Is this a float?''
1256
1257 sub getnum {
1258 use POSIX qw(strtod);
1259 my $str = shift;
1260 $str =~ s/^\s+//;
1261 $str =~ s/\s+$//;
1262 $! = 0;
1263 my($num, $unparsed) = strtod($str);
1264 if (($str eq '') || ($unparsed != 0) || $!) {
1265 return undef;
1266 } else {
1267 return $num;
1268 }
1269 }
1270
1271 sub is_numeric { defined &getnum }
1272
68dc0745 1273Or you could check out
1274http://www.perl.com/CPAN/modules/by-module/String/String-Scanf-1.1.tar.gz
1275instead. The POSIX module (part of the standard Perl distribution)
1276provides the C<strtol> and C<strtod> for converting strings to double
1277and longs, respectively.
1278
1279=head2 How do I keep persistent data across program calls?
1280
1281For some specific applications, you can use one of the DBM modules.
1282See L<AnyDBM_File>. More generically, you should consult the
1283FreezeThaw, Storable, or Class::Eroot modules from CPAN.
1284
1285=head2 How do I print out or copy a recursive data structure?
1286
1287The Data::Dumper module on CPAN is nice for printing out
1288data structures, and FreezeThaw for copying them. For example:
1289
1290 use FreezeThaw qw(freeze thaw);
1291 $new = thaw freeze $old;
1292
1293Where $old can be (a reference to) any kind of data structure you'd like.
1294It will be deeply copied.
1295
1296=head2 How do I define methods for every class/object?
1297
1298Use the UNIVERSAL class (see L<UNIVERSAL>).
1299
1300=head2 How do I verify a credit card checksum?
1301
1302Get the Business::CreditCard module from CPAN.
1303
1304=head1 AUTHOR AND COPYRIGHT
1305
5a964f20 1306Copyright (c) 1997, 1998 Tom Christiansen and Nathan Torkington.
1307All rights reserved.
1308
1309When included as part of the Standard Version of Perl, or as part of
1310its complete documentation whether printed or otherwise, this work
1311may be distributed only under the terms of Perl's Artistic License.
1312Any distribution of this file or derivatives thereof I<outside>
1313of that package require that special arrangements be made with
1314copyright holder.
1315
1316Irrespective of its distribution, all code examples in this file
1317are hereby placed into the public domain. You are permitted and
1318encouraged to use this code in your own programs for fun
1319or for profit as you see fit. A simple comment in the code giving
1320credit would be courteous but is not required.