[win32] merge change#985 from maintbranch
[p5sagit/p5-mst-13.2.git] / pod / perlop.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3perlop - Perl operators and precedence
4
5=head1 SYNOPSIS
6
7Perl operators have the following associativity and precedence,
8listed from highest precedence to lowest. Note that all operators
9borrowed from C keep the same precedence relationship with each other,
10even where C's precedence is slightly screwy. (This makes learning
54310121 11Perl easier for C folks.) With very few exceptions, these all
c07a80fd 12operate on scalar values only, not array values.
a0d0e21e 13
14 left terms and list operators (leftward)
15 left ->
16 nonassoc ++ --
17 right **
18 right ! ~ \ and unary + and -
54310121 19 left =~ !~
a0d0e21e 20 left * / % x
21 left + - .
22 left << >>
23 nonassoc named unary operators
24 nonassoc < > <= >= lt gt le ge
25 nonassoc == != <=> eq ne cmp
26 left &
27 left | ^
28 left &&
29 left ||
137443ea 30 nonassoc .. ...
a0d0e21e 31 right ?:
32 right = += -= *= etc.
33 left , =>
34 nonassoc list operators (rightward)
a5f75d66 35 right not
a0d0e21e 36 left and
37 left or xor
38
39In the following sections, these operators are covered in precedence order.
40
cb1a09d0 41=head1 DESCRIPTION
a0d0e21e 42
43=head2 Terms and List Operators (Leftward)
44
54310121 45A TERM has the highest precedence in Perl. They includes variables,
5f05dabc 46quote and quote-like operators, any expression in parentheses,
a0d0e21e 47and any function whose arguments are parenthesized. Actually, there
48aren't really functions in this sense, just list operators and unary
49operators behaving as functions because you put parentheses around
50the arguments. These are all documented in L<perlfunc>.
51
52If any list operator (print(), etc.) or any unary operator (chdir(), etc.)
53is followed by a left parenthesis as the next token, the operator and
54arguments within parentheses are taken to be of highest precedence,
55just like a normal function call.
56
57In the absence of parentheses, the precedence of list operators such as
58C<print>, C<sort>, or C<chmod> is either very high or very low depending on
54310121 59whether you are looking at the left side or the right side of the operator.
a0d0e21e 60For example, in
61
62 @ary = (1, 3, sort 4, 2);
63 print @ary; # prints 1324
64
65the commas on the right of the sort are evaluated before the sort, but
66the commas on the left are evaluated after. In other words, list
67operators tend to gobble up all the arguments that follow them, and
68then act like a simple TERM with regard to the preceding expression.
5f05dabc 69Note that you have to be careful with parentheses:
a0d0e21e 70
71 # These evaluate exit before doing the print:
72 print($foo, exit); # Obviously not what you want.
73 print $foo, exit; # Nor is this.
74
75 # These do the print before evaluating exit:
76 (print $foo), exit; # This is what you want.
77 print($foo), exit; # Or this.
78 print ($foo), exit; # Or even this.
79
80Also note that
81
82 print ($foo & 255) + 1, "\n";
83
54310121 84probably doesn't do what you expect at first glance. See
a0d0e21e 85L<Named Unary Operators> for more discussion of this.
86
87Also parsed as terms are the C<do {}> and C<eval {}> constructs, as
54310121 88well as subroutine and method calls, and the anonymous
a0d0e21e 89constructors C<[]> and C<{}>.
90
2ae324a7 91See also L<Quote and Quote-like Operators> toward the end of this section,
c07a80fd 92as well as L<"I/O Operators">.
a0d0e21e 93
94=head2 The Arrow Operator
95
96Just as in C and C++, "C<-E<gt>>" is an infix dereference operator. If the
97right side is either a C<[...]> or C<{...}> subscript, then the left side
98must be either a hard or symbolic reference to an array or hash (or
99a location capable of holding a hard reference, if it's an lvalue (assignable)).
100See L<perlref>.
101
102Otherwise, the right side is a method name or a simple scalar variable
103containing the method name, and the left side must either be an object
104(a blessed reference) or a class name (that is, a package name).
105See L<perlobj>.
106
5f05dabc 107=head2 Auto-increment and Auto-decrement
a0d0e21e 108
109"++" and "--" work as in C. That is, if placed before a variable, they
110increment or decrement the variable before returning the value, and if
111placed after, increment or decrement the variable after returning the value.
112
54310121 113The auto-increment operator has a little extra builtin magic to it. If
a0d0e21e 114you increment a variable that is numeric, or that has ever been used in
115a numeric context, you get a normal increment. If, however, the
5f05dabc 116variable has been used in only string contexts since it was set, and
a0d0e21e 117has a value that is not null and matches the pattern
118C</^[a-zA-Z]*[0-9]*$/>, the increment is done as a string, preserving each
119character within its range, with carry:
120
121 print ++($foo = '99'); # prints '100'
122 print ++($foo = 'a0'); # prints 'a1'
123 print ++($foo = 'Az'); # prints 'Ba'
124 print ++($foo = 'zz'); # prints 'aaa'
125
5f05dabc 126The auto-decrement operator is not magical.
a0d0e21e 127
128=head2 Exponentiation
129
130Binary "**" is the exponentiation operator. Note that it binds even more
cb1a09d0 131tightly than unary minus, so -2**4 is -(2**4), not (-2)**4. (This is
132implemented using C's pow(3) function, which actually works on doubles
133internally.)
a0d0e21e 134
135=head2 Symbolic Unary Operators
136
5f05dabc 137Unary "!" performs logical negation, i.e., "not". See also C<not> for a lower
a0d0e21e 138precedence version of this.
139
140Unary "-" performs arithmetic negation if the operand is numeric. If
141the operand is an identifier, a string consisting of a minus sign
142concatenated with the identifier is returned. Otherwise, if the string
143starts with a plus or minus, a string starting with the opposite sign
144is returned. One effect of these rules is that C<-bareword> is equivalent
145to C<"-bareword">.
146
5f05dabc 147Unary "~" performs bitwise negation, i.e., 1's complement.
2c268ad5 148(See also L<Integer Arithmetic> and L<Bitwise String Operators>.)
a0d0e21e 149
150Unary "+" has no effect whatsoever, even on strings. It is useful
151syntactically for separating a function name from a parenthesized expression
152that would otherwise be interpreted as the complete list of function
5ba421f6 153arguments. (See examples above under L<Terms and List Operators (Leftward)>.)
a0d0e21e 154
155Unary "\" creates a reference to whatever follows it. See L<perlref>.
156Do not confuse this behavior with the behavior of backslash within a
157string, although both forms do convey the notion of protecting the next
158thing from interpretation.
159
160=head2 Binding Operators
161
c07a80fd 162Binary "=~" binds a scalar expression to a pattern match. Certain operations
cb1a09d0 163search or modify the string $_ by default. This operator makes that kind
164of operation work on some other string. The right argument is a search
2c268ad5 165pattern, substitution, or transliteration. The left argument is what is
166supposed to be searched, substituted, or transliterated instead of the default
cb1a09d0 167$_. The return value indicates the success of the operation. (If the
168right argument is an expression rather than a search pattern,
2c268ad5 169substitution, or transliteration, it is interpreted as a search pattern at run
aa689395 170time. This can be is less efficient than an explicit search, because the
171pattern must be compiled every time the expression is evaluated.
a0d0e21e 172
173Binary "!~" is just like "=~" except the return value is negated in
174the logical sense.
175
176=head2 Multiplicative Operators
177
178Binary "*" multiplies two numbers.
179
180Binary "/" divides two numbers.
181
54310121 182Binary "%" computes the modulus of two numbers. Given integer
183operands C<$a> and C<$b>: If C<$b> is positive, then C<$a % $b> is
184C<$a> minus the largest multiple of C<$b> that is not greater than
185C<$a>. If C<$b> is negative, then C<$a % $b> is C<$a> minus the
186smallest multiple of C<$b> that is not less than C<$a> (i.e. the
187result will be less than or equal to zero).
a0d0e21e 188
55d729e4 189Note than when C<use integer> is in scope "%" give you direct access
190to the modulus operator as implemented by your C compiler. This
191operator is not as well defined for negative operands, but it will
192execute faster.
193
a0d0e21e 194Binary "x" is the repetition operator. In a scalar context, it
195returns a string consisting of the left operand repeated the number of
196times specified by the right operand. In a list context, if the left
5f05dabc 197operand is a list in parentheses, it repeats the list.
a0d0e21e 198
199 print '-' x 80; # print row of dashes
200
201 print "\t" x ($tab/8), ' ' x ($tab%8); # tab over
202
203 @ones = (1) x 80; # a list of 80 1's
204 @ones = (5) x @ones; # set all elements to 5
205
206
207=head2 Additive Operators
208
209Binary "+" returns the sum of two numbers.
210
211Binary "-" returns the difference of two numbers.
212
213Binary "." concatenates two strings.
214
215=head2 Shift Operators
216
55497cff 217Binary "<<" returns the value of its left argument shifted left by the
218number of bits specified by the right argument. Arguments should be
219integers. (See also L<Integer Arithmetic>.)
a0d0e21e 220
55497cff 221Binary ">>" returns the value of its left argument shifted right by
222the number of bits specified by the right argument. Arguments should
223be integers. (See also L<Integer Arithmetic>.)
a0d0e21e 224
225=head2 Named Unary Operators
226
227The various named unary operators are treated as functions with one
228argument, with optional parentheses. These include the filetest
229operators, like C<-f>, C<-M>, etc. See L<perlfunc>.
230
231If any list operator (print(), etc.) or any unary operator (chdir(), etc.)
232is followed by a left parenthesis as the next token, the operator and
233arguments within parentheses are taken to be of highest precedence,
234just like a normal function call. Examples:
235
236 chdir $foo || die; # (chdir $foo) || die
237 chdir($foo) || die; # (chdir $foo) || die
238 chdir ($foo) || die; # (chdir $foo) || die
239 chdir +($foo) || die; # (chdir $foo) || die
240
241but, because * is higher precedence than ||:
242
243 chdir $foo * 20; # chdir ($foo * 20)
244 chdir($foo) * 20; # (chdir $foo) * 20
245 chdir ($foo) * 20; # (chdir $foo) * 20
246 chdir +($foo) * 20; # chdir ($foo * 20)
247
248 rand 10 * 20; # rand (10 * 20)
249 rand(10) * 20; # (rand 10) * 20
250 rand (10) * 20; # (rand 10) * 20
251 rand +(10) * 20; # rand (10 * 20)
252
5ba421f6 253See also L<"Terms and List Operators (Leftward)">.
a0d0e21e 254
255=head2 Relational Operators
256
6ee5d4e7 257Binary "E<lt>" returns true if the left argument is numerically less than
a0d0e21e 258the right argument.
259
6ee5d4e7 260Binary "E<gt>" returns true if the left argument is numerically greater
a0d0e21e 261than the right argument.
262
6ee5d4e7 263Binary "E<lt>=" returns true if the left argument is numerically less than
a0d0e21e 264or equal to the right argument.
265
6ee5d4e7 266Binary "E<gt>=" returns true if the left argument is numerically greater
a0d0e21e 267than or equal to the right argument.
268
269Binary "lt" returns true if the left argument is stringwise less than
270the right argument.
271
272Binary "gt" returns true if the left argument is stringwise greater
273than the right argument.
274
275Binary "le" returns true if the left argument is stringwise less than
276or equal to the right argument.
277
278Binary "ge" returns true if the left argument is stringwise greater
279than or equal to the right argument.
280
281=head2 Equality Operators
282
283Binary "==" returns true if the left argument is numerically equal to
284the right argument.
285
286Binary "!=" returns true if the left argument is numerically not equal
287to the right argument.
288
6ee5d4e7 289Binary "E<lt>=E<gt>" returns -1, 0, or 1 depending on whether the left
290argument is numerically less than, equal to, or greater than the right
291argument.
a0d0e21e 292
293Binary "eq" returns true if the left argument is stringwise equal to
294the right argument.
295
296Binary "ne" returns true if the left argument is stringwise not equal
297to the right argument.
298
299Binary "cmp" returns -1, 0, or 1 depending on whether the left argument is stringwise
300less than, equal to, or greater than the right argument.
301
a034a98d 302"lt", "le", "ge", "gt" and "cmp" use the collation (sort) order specified
303by the current locale if C<use locale> is in effect. See L<perllocale>.
304
a0d0e21e 305=head2 Bitwise And
306
307Binary "&" returns its operators ANDed together bit by bit.
2c268ad5 308(See also L<Integer Arithmetic> and L<Bitwise String Operators>.)
a0d0e21e 309
310=head2 Bitwise Or and Exclusive Or
311
312Binary "|" returns its operators ORed together bit by bit.
2c268ad5 313(See also L<Integer Arithmetic> and L<Bitwise String Operators>.)
a0d0e21e 314
315Binary "^" returns its operators XORed together bit by bit.
2c268ad5 316(See also L<Integer Arithmetic> and L<Bitwise String Operators>.)
a0d0e21e 317
318=head2 C-style Logical And
319
320Binary "&&" performs a short-circuit logical AND operation. That is,
321if the left operand is false, the right operand is not even evaluated.
322Scalar or list context propagates down to the right operand if it
323is evaluated.
324
325=head2 C-style Logical Or
326
327Binary "||" performs a short-circuit logical OR operation. That is,
328if the left operand is true, the right operand is not even evaluated.
329Scalar or list context propagates down to the right operand if it
330is evaluated.
331
332The C<||> and C<&&> operators differ from C's in that, rather than returning
3330 or 1, they return the last value evaluated. Thus, a reasonably portable
334way to find out the home directory (assuming it's not "0") might be:
335
336 $home = $ENV{'HOME'} || $ENV{'LOGDIR'} ||
337 (getpwuid($<))[7] || die "You're homeless!\n";
338
339As more readable alternatives to C<&&> and C<||>, Perl provides "and" and
340"or" operators (see below). The short-circuit behavior is identical. The
341precedence of "and" and "or" is much lower, however, so that you can
342safely use them after a list operator without the need for
343parentheses:
344
345 unlink "alpha", "beta", "gamma"
346 or gripe(), next LINE;
347
348With the C-style operators that would have been written like this:
349
350 unlink("alpha", "beta", "gamma")
351 || (gripe(), next LINE);
352
353=head2 Range Operator
354
355Binary ".." is the range operator, which is really two different
356operators depending on the context. In a list context, it returns an
357array of values counting (by ones) from the left value to the right
358value. This is useful for writing C<for (1..10)> loops and for doing
359slice operations on arrays. Be aware that under the current implementation,
54310121 360a temporary array is created, so you'll burn a lot of memory if you
a0d0e21e 361write something like this:
362
363 for (1 .. 1_000_000) {
364 # code
54310121 365 }
a0d0e21e 366
367In a scalar context, ".." returns a boolean value. The operator is
368bistable, like a flip-flop, and emulates the line-range (comma) operator
369of B<sed>, B<awk>, and various editors. Each ".." operator maintains its
370own boolean state. It is false as long as its left operand is false.
371Once the left operand is true, the range operator stays true until the
372right operand is true, I<AFTER> which the range operator becomes false
373again. (It doesn't become false till the next time the range operator is
374evaluated. It can test the right operand and become false on the same
375evaluation it became true (as in B<awk>), but it still returns true once.
376If you don't want it to test the right operand till the next evaluation
377(as in B<sed>), use three dots ("...") instead of two.) The right
378operand is not evaluated while the operator is in the "false" state, and
379the left operand is not evaluated while the operator is in the "true"
380state. The precedence is a little lower than || and &&. The value
381returned is either the null string for false, or a sequence number
382(beginning with 1) for true. The sequence number is reset for each range
383encountered. The final sequence number in a range has the string "E0"
384appended to it, which doesn't affect its numeric value, but gives you
385something to search for if you want to exclude the endpoint. You can
386exclude the beginning point by waiting for the sequence number to be
387greater than 1. If either operand of scalar ".." is a numeric literal,
388that operand is implicitly compared to the C<$.> variable, the current
389line number. Examples:
390
391As a scalar operator:
392
393 if (101 .. 200) { print; } # print 2nd hundred lines
394 next line if (1 .. /^$/); # skip header lines
395 s/^/> / if (/^$/ .. eof()); # quote body
396
397As a list operator:
398
399 for (101 .. 200) { print; } # print $_ 100 times
3e3baf6d 400 @foo = @foo[0 .. $#foo]; # an expensive no-op
a0d0e21e 401 @foo = @foo[$#foo-4 .. $#foo]; # slice last 5 items
402
403The range operator (in a list context) makes use of the magical
5f05dabc 404auto-increment algorithm if the operands are strings. You
a0d0e21e 405can say
406
407 @alphabet = ('A' .. 'Z');
408
409to get all the letters of the alphabet, or
410
411 $hexdigit = (0 .. 9, 'a' .. 'f')[$num & 15];
412
413to get a hexadecimal digit, or
414
415 @z2 = ('01' .. '31'); print $z2[$mday];
416
417to get dates with leading zeros. If the final value specified is not
418in the sequence that the magical increment would produce, the sequence
419goes until the next value would be longer than the final value
420specified.
421
422=head2 Conditional Operator
423
424Ternary "?:" is the conditional operator, just as in C. It works much
425like an if-then-else. If the argument before the ? is true, the
426argument before the : is returned, otherwise the argument after the :
cb1a09d0 427is returned. For example:
428
54310121 429 printf "I have %d dog%s.\n", $n,
cb1a09d0 430 ($n == 1) ? '' : "s";
431
432Scalar or list context propagates downward into the 2nd
54310121 433or 3rd argument, whichever is selected.
cb1a09d0 434
435 $a = $ok ? $b : $c; # get a scalar
436 @a = $ok ? @b : @c; # get an array
437 $a = $ok ? @b : @c; # oops, that's just a count!
438
439The operator may be assigned to if both the 2nd and 3rd arguments are
440legal lvalues (meaning that you can assign to them):
a0d0e21e 441
442 ($a_or_b ? $a : $b) = $c;
443
cb1a09d0 444This is not necessarily guaranteed to contribute to the readability of your program.
a0d0e21e 445
4633a7c4 446=head2 Assignment Operators
a0d0e21e 447
448"=" is the ordinary assignment operator.
449
450Assignment operators work as in C. That is,
451
452 $a += 2;
453
454is equivalent to
455
456 $a = $a + 2;
457
458although without duplicating any side effects that dereferencing the lvalue
54310121 459might trigger, such as from tie(). Other assignment operators work similarly.
460The following are recognized:
a0d0e21e 461
462 **= += *= &= <<= &&=
463 -= /= |= >>= ||=
464 .= %= ^=
465 x=
466
467Note that while these are grouped by family, they all have the precedence
468of assignment.
469
470Unlike in C, the assignment operator produces a valid lvalue. Modifying
471an assignment is equivalent to doing the assignment and then modifying
472the variable that was assigned to. This is useful for modifying
473a copy of something, like this:
474
475 ($tmp = $global) =~ tr [A-Z] [a-z];
476
477Likewise,
478
479 ($a += 2) *= 3;
480
481is equivalent to
482
483 $a += 2;
484 $a *= 3;
485
748a9306 486=head2 Comma Operator
a0d0e21e 487
488Binary "," is the comma operator. In a scalar context it evaluates
489its left argument, throws that value away, then evaluates its right
490argument and returns that value. This is just like C's comma operator.
491
492In a list context, it's just the list argument separator, and inserts
493both its arguments into the list.
494
6ee5d4e7 495The =E<gt> digraph is mostly just a synonym for the comma operator. It's useful for
cb1a09d0 496documenting arguments that come in pairs. As of release 5.001, it also forces
4633a7c4 497any word to the left of it to be interpreted as a string.
748a9306 498
a0d0e21e 499=head2 List Operators (Rightward)
500
501On the right side of a list operator, it has very low precedence,
502such that it controls all comma-separated expressions found there.
503The only operators with lower precedence are the logical operators
504"and", "or", and "not", which may be used to evaluate calls to list
505operators without the need for extra parentheses:
506
507 open HANDLE, "filename"
508 or die "Can't open: $!\n";
509
5ba421f6 510See also discussion of list operators in L<Terms and List Operators (Leftward)>.
a0d0e21e 511
512=head2 Logical Not
513
514Unary "not" returns the logical negation of the expression to its right.
515It's the equivalent of "!" except for the very low precedence.
516
517=head2 Logical And
518
519Binary "and" returns the logical conjunction of the two surrounding
520expressions. It's equivalent to && except for the very low
5f05dabc 521precedence. This means that it short-circuits: i.e., the right
a0d0e21e 522expression is evaluated only if the left expression is true.
523
524=head2 Logical or and Exclusive Or
525
526Binary "or" returns the logical disjunction of the two surrounding
527expressions. It's equivalent to || except for the very low
5f05dabc 528precedence. This means that it short-circuits: i.e., the right
a0d0e21e 529expression is evaluated only if the left expression is false.
530
531Binary "xor" returns the exclusive-OR of the two surrounding expressions.
532It cannot short circuit, of course.
533
534=head2 C Operators Missing From Perl
535
536Here is what C has that Perl doesn't:
537
538=over 8
539
540=item unary &
541
542Address-of operator. (But see the "\" operator for taking a reference.)
543
544=item unary *
545
54310121 546Dereference-address operator. (Perl's prefix dereferencing
a0d0e21e 547operators are typed: $, @, %, and &.)
548
549=item (TYPE)
550
54310121 551Type casting operator.
a0d0e21e 552
553=back
554
5f05dabc 555=head2 Quote and Quote-like Operators
a0d0e21e 556
557While we usually think of quotes as literal values, in Perl they
558function as operators, providing various kinds of interpolating and
559pattern matching capabilities. Perl provides customary quote characters
560for these behaviors, but also provides a way for you to choose your
561quote character for any of them. In the following table, a C<{}> represents
562any pair of delimiters you choose. Non-bracketing delimiters use
54310121 563the same character fore and aft, but the 4 sorts of brackets
a0d0e21e 564(round, angle, square, curly) will all nest.
565
2c268ad5 566 Customary Generic Meaning Interpolates
567 '' q{} Literal no
568 "" qq{} Literal yes
569 `` qx{} Command yes
570 qw{} Word list no
571 // m{} Pattern match yes
572 s{}{} Substitution yes
573 tr{}{} Transliteration no (but see below)
a0d0e21e 574
fb73857a 575Note that there can be whitespace between the operator and the quoting
576characters, except when C<#> is being used as the quoting character.
a3cb178b 577C<q#foo#> is parsed as being the string C<foo>, while C<q #foo#> is the
fb73857a 578operator C<q> followed by a comment. Its argument will be taken from the
579next line. This allows you to write:
580
581 s {foo} # Replace foo
582 {bar} # with bar.
583
2c268ad5 584For constructs that do interpolation, variables beginning with "C<$>"
585or "C<@>" are interpolated, as are the following sequences. Within
586a transliteration, the first ten of these sequences may be used.
a0d0e21e 587
6ee5d4e7 588 \t tab (HT, TAB)
589 \n newline (LF, NL)
590 \r return (CR)
591 \f form feed (FF)
592 \b backspace (BS)
593 \a alarm (bell) (BEL)
594 \e escape (ESC)
a0d0e21e 595 \033 octal char
596 \x1b hex char
597 \c[ control char
2c268ad5 598
a0d0e21e 599 \l lowercase next char
600 \u uppercase next char
601 \L lowercase till \E
602 \U uppercase till \E
603 \E end case modification
604 \Q quote regexp metacharacters till \E
605
a034a98d 606If C<use locale> is in effect, the case map used by C<\l>, C<\L>, C<\u>
7b8d334a 607and C<\U> is taken from the current locale. See L<perllocale>.
a034a98d 608
a0d0e21e 609Patterns are subject to an additional level of interpretation as a
610regular expression. This is done as a second pass, after variables are
611interpolated, so that regular expressions may be incorporated into the
612pattern from the variables. If this is not what you want, use C<\Q> to
613interpolate a variable literally.
614
615Apart from the above, there are no multiple levels of interpolation. In
5f05dabc 616particular, contrary to the expectations of shell programmers, back-quotes
a0d0e21e 617do I<NOT> interpolate within double quotes, nor do single quotes impede
618evaluation of variables when used within double quotes.
619
5f05dabc 620=head2 Regexp Quote-Like Operators
cb1a09d0 621
5f05dabc 622Here are the quote-like operators that apply to pattern
cb1a09d0 623matching and related activities.
624
a0d0e21e 625=over 8
626
627=item ?PATTERN?
628
629This is just like the C</pattern/> search, except that it matches only
630once between calls to the reset() operator. This is a useful
5f05dabc 631optimization when you want to see only the first occurrence of
a0d0e21e 632something in each file of a set of files, for instance. Only C<??>
633patterns local to the current package are reset.
634
635This usage is vaguely deprecated, and may be removed in some future
636version of Perl.
637
fb73857a 638=item m/PATTERN/cgimosx
a0d0e21e 639
fb73857a 640=item /PATTERN/cgimosx
a0d0e21e 641
642Searches a string for a pattern match, and in a scalar context returns
643true (1) or false (''). If no string is specified via the C<=~> or
644C<!~> operator, the $_ string is searched. (The string specified with
645C<=~> need not be an lvalue--it may be the result of an expression
646evaluation, but remember the C<=~> binds rather tightly.) See also
647L<perlre>.
a034a98d 648See L<perllocale> for discussion of additional considerations which apply
649when C<use locale> is in effect.
a0d0e21e 650
651Options are:
652
fb73857a 653 c Do not reset search position on a failed match when /g is in effect.
5f05dabc 654 g Match globally, i.e., find all occurrences.
a0d0e21e 655 i Do case-insensitive pattern matching.
656 m Treat string as multiple lines.
5f05dabc 657 o Compile pattern only once.
a0d0e21e 658 s Treat string as single line.
48c036b1 659 t Taint $1 etc. if target string is tainted.
a0d0e21e 660 x Use extended regular expressions.
661
662If "/" is the delimiter then the initial C<m> is optional. With the C<m>
663you can use any pair of non-alphanumeric, non-whitespace characters as
664delimiters. This is particularly useful for matching Unix path names
7bac28a0 665that contain "/", to avoid LTS (leaning toothpick syndrome). If "?" is
666the delimiter, then the match-only-once rule of C<?PATTERN?> applies.
a0d0e21e 667
668PATTERN may contain variables, which will be interpolated (and the
669pattern recompiled) every time the pattern search is evaluated. (Note
670that C<$)> and C<$|> might not be interpolated because they look like
671end-of-string tests.) If you want such a pattern to be compiled only
672once, add a C</o> after the trailing delimiter. This avoids expensive
673run-time recompilations, and is useful when the value you are
674interpolating won't change over the life of the script. However, mentioning
675C</o> constitutes a promise that you won't change the variables in the pattern.
676If you change them, Perl won't even notice.
677
4633a7c4 678If the PATTERN evaluates to a null string, the last
a3cb178b 679successfully matched regular expression is used instead.
a0d0e21e 680
681If used in a context that requires a list value, a pattern match returns a
682list consisting of the subexpressions matched by the parentheses in the
5f05dabc 683pattern, i.e., (C<$1>, $2, $3...). (Note that here $1 etc. are also set, and
a0d0e21e 684that this differs from Perl 4's behavior.) If the match fails, a null
685array is returned. If the match succeeds, but there were no parentheses,
686a list value of (1) is returned.
687
688Examples:
689
690 open(TTY, '/dev/tty');
691 <TTY> =~ /^y/i && foo(); # do foo if desired
692
693 if (/Version: *([0-9.]*)/) { $version = $1; }
694
695 next if m#^/usr/spool/uucp#;
696
697 # poor man's grep
698 $arg = shift;
699 while (<>) {
700 print if /$arg/o; # compile only once
701 }
702
703 if (($F1, $F2, $Etc) = ($foo =~ /^(\S+)\s+(\S+)\s*(.*)/))
704
705This last example splits $foo into the first two words and the
5f05dabc 706remainder of the line, and assigns those three fields to $F1, $F2, and
707$Etc. The conditional is true if any variables were assigned, i.e., if
a0d0e21e 708the pattern matched.
709
710The C</g> modifier specifies global pattern matching--that is, matching
711as many times as possible within the string. How it behaves depends on
712the context. In a list context, it returns a list of all the
713substrings matched by all the parentheses in the regular expression.
714If there are no parentheses, it returns a list of all the matched
715strings, as if there were parentheses around the whole pattern.
716
717In a scalar context, C<m//g> iterates through the string, returning TRUE
c90c0ff4 718each time it matches, and FALSE when it eventually runs out of matches.
719(In other words, it remembers where it left off last time and restarts
720the search at that point. You can actually find the current match
721position of a string or set it using the pos() function; see
722L<perlfunc/pos>.) A failed match normally resets the search position to
90248788 723the beginning of the string, but you can avoid that by adding the C</c>
c90c0ff4 724modifier (e.g. C<m//gc>). Modifying the target string also resets the
725search position.
726
727You can intermix C<m//g> matches with C<m/\G.../g>, where C<\G> is a
728zero-width assertion that matches the exact position where the previous
729C<m//g>, if any, left off. The C<\G> assertion is not supported without
730the C</g> modifier; currently, without C</g>, C<\G> behaves just like
731C<\A>, but that's accidental and may change in the future.
732
733Examples:
a0d0e21e 734
735 # list context
736 ($one,$five,$fifteen) = (`uptime` =~ /(\d+\.\d+)/g);
737
738 # scalar context
5f05dabc 739 $/ = ""; $* = 1; # $* deprecated in modern perls
54310121 740 while (defined($paragraph = <>)) {
a0d0e21e 741 while ($paragraph =~ /[a-z]['")]*[.!?]+['")]*\s/g) {
742 $sentences++;
743 }
744 }
745 print "$sentences\n";
746
c90c0ff4 747 # using m//gc with \G
137443ea 748 $_ = "ppooqppqq";
44a8e56a 749 while ($i++ < 2) {
750 print "1: '";
c90c0ff4 751 print $1 while /(o)/gc; print "', pos=", pos, "\n";
44a8e56a 752 print "2: '";
c90c0ff4 753 print $1 if /\G(q)/gc; print "', pos=", pos, "\n";
44a8e56a 754 print "3: '";
c90c0ff4 755 print $1 while /(p)/gc; print "', pos=", pos, "\n";
44a8e56a 756 }
757
758The last example should print:
759
760 1: 'oo', pos=4
137443ea 761 2: 'q', pos=5
44a8e56a 762 3: 'pp', pos=7
763 1: '', pos=7
137443ea 764 2: 'q', pos=8
765 3: '', pos=8
44a8e56a 766
c90c0ff4 767A useful idiom for C<lex>-like scanners is C</\G.../gc>. You can
e7ea3e70 768combine several regexps like this to process a string part-by-part,
c90c0ff4 769doing different actions depending on which regexp matched. Each
770regexp tries to match where the previous one leaves off.
e7ea3e70 771
3fe9a6f1 772 $_ = <<'EOL';
e7ea3e70 773 $url = new URI::URL "http://www/"; die if $url eq "xXx";
3fe9a6f1 774 EOL
775 LOOP:
e7ea3e70 776 {
c90c0ff4 777 print(" digits"), redo LOOP if /\G\d+\b[,.;]?\s*/gc;
778 print(" lowercase"), redo LOOP if /\G[a-z]+\b[,.;]?\s*/gc;
779 print(" UPPERCASE"), redo LOOP if /\G[A-Z]+\b[,.;]?\s*/gc;
780 print(" Capitalized"), redo LOOP if /\G[A-Z][a-z]+\b[,.;]?\s*/gc;
781 print(" MiXeD"), redo LOOP if /\G[A-Za-z]+\b[,.;]?\s*/gc;
782 print(" alphanumeric"), redo LOOP if /\G[A-Za-z0-9]+\b[,.;]?\s*/gc;
783 print(" line-noise"), redo LOOP if /\G[^A-Za-z0-9]+/gc;
e7ea3e70 784 print ". That's all!\n";
785 }
786
787Here is the output (split into several lines):
788
789 line-noise lowercase line-noise lowercase UPPERCASE line-noise
790 UPPERCASE line-noise lowercase line-noise lowercase line-noise
791 lowercase lowercase line-noise lowercase lowercase line-noise
792 MiXeD line-noise. That's all!
44a8e56a 793
a0d0e21e 794=item q/STRING/
795
796=item C<'STRING'>
797
68dc0745 798A single-quoted, literal string. A backslash represents a backslash
799unless followed by the delimiter or another backslash, in which case
800the delimiter or backslash is interpolated.
a0d0e21e 801
802 $foo = q!I said, "You said, 'She said it.'"!;
803 $bar = q('This is it.');
68dc0745 804 $baz = '\n'; # a two-character string
a0d0e21e 805
806=item qq/STRING/
807
808=item "STRING"
809
810A double-quoted, interpolated string.
811
812 $_ .= qq
813 (*** The previous line contains the naughty word "$1".\n)
814 if /(tcl|rexx|python)/; # :-)
68dc0745 815 $baz = "\n"; # a one-character string
a0d0e21e 816
817=item qx/STRING/
818
819=item `STRING`
820
821A string which is interpolated and then executed as a system command.
822The collected standard output of the command is returned. In scalar
4a6725af 823context, it comes back as a single (potentially multi-line) string.
a0d0e21e 824In list context, returns a list of lines (however you've defined lines
825with $/ or $INPUT_RECORD_SEPARATOR).
826
827 $today = qx{ date };
828
bb32b41a 829Note that how the string gets evaluated is entirely subject to the
830command interpreter on your system. On most platforms, you will have
831to protect shell metacharacters if you want them treated literally.
832On some platforms (notably DOS-like ones), the shell may not be
833capable of dealing with multiline commands, so putting newlines in
834the string may not get you what you want. You may be able to evaluate
835multiple commands in a single line by separating them with the command
836separator character, if your shell supports that (e.g. C<;> on many Unix
837shells; C<&> on the Windows NT C<cmd> shell).
838
839Beware that some command shells may place restrictions on the length
840of the command line. You must ensure your strings don't exceed this
841limit after any necessary interpolations. See the platform-specific
842release notes for more details about your particular environment.
843
844Also realize that using this operator frequently leads to unportable
845programs.
846
dc848c6f 847See L<"I/O Operators"> for more discussion.
a0d0e21e 848
849=item qw/STRING/
850
851Returns a list of the words extracted out of STRING, using embedded
852whitespace as the word delimiters. It is exactly equivalent to
853
854 split(' ', q/STRING/);
855
856Some frequently seen examples:
857
858 use POSIX qw( setlocale localeconv )
859 @EXPORT = qw( foo bar baz );
860
7bac28a0 861A common mistake is to try to separate the words with comma or to put
862comments into a multi-line qw-string. For this reason the C<-w>
863switch produce warnings if the STRING contains the "," or the "#"
864character.
865
a0d0e21e 866=item s/PATTERN/REPLACEMENT/egimosx
867
868Searches a string for a pattern, and if found, replaces that pattern
869with the replacement text and returns the number of substitutions
e37d713d 870made. Otherwise it returns false (specifically, the empty string).
a0d0e21e 871
872If no string is specified via the C<=~> or C<!~> operator, the C<$_>
873variable is searched and modified. (The string specified with C<=~> must
874be a scalar variable, an array element, a hash element, or an assignment
5f05dabc 875to one of those, i.e., an lvalue.)
a0d0e21e 876
877If the delimiter chosen is single quote, no variable interpolation is
878done on either the PATTERN or the REPLACEMENT. Otherwise, if the
879PATTERN contains a $ that looks like a variable rather than an
880end-of-string test, the variable will be interpolated into the pattern
5f05dabc 881at run-time. If you want the pattern compiled only once the first time
a0d0e21e 882the variable is interpolated, use the C</o> option. If the pattern
4633a7c4 883evaluates to a null string, the last successfully executed regular
a0d0e21e 884expression is used instead. See L<perlre> for further explanation on these.
a034a98d 885See L<perllocale> for discussion of additional considerations which apply
886when C<use locale> is in effect.
a0d0e21e 887
888Options are:
889
890 e Evaluate the right side as an expression.
5f05dabc 891 g Replace globally, i.e., all occurrences.
a0d0e21e 892 i Do case-insensitive pattern matching.
893 m Treat string as multiple lines.
5f05dabc 894 o Compile pattern only once.
a0d0e21e 895 s Treat string as single line.
896 x Use extended regular expressions.
897
898Any non-alphanumeric, non-whitespace delimiter may replace the
899slashes. If single quotes are used, no interpretation is done on the
e37d713d 900replacement string (the C</e> modifier overrides this, however). Unlike
54310121 901Perl 4, Perl 5 treats backticks as normal delimiters; the replacement
e37d713d 902text is not evaluated as a command. If the
a0d0e21e 903PATTERN is delimited by bracketing quotes, the REPLACEMENT has its own
5f05dabc 904pair of quotes, which may or may not be bracketing quotes, e.g.,
a0d0e21e 905C<s(foo)(bar)> or C<sE<lt>fooE<gt>/bar/>. A C</e> will cause the
7b8d334a 906replacement portion to be interpreted as a full-fledged Perl expression
a0d0e21e 907and eval()ed right then and there. It is, however, syntax checked at
908compile-time.
909
910Examples:
911
912 s/\bgreen\b/mauve/g; # don't change wintergreen
913
914 $path =~ s|/usr/bin|/usr/local/bin|;
915
916 s/Login: $foo/Login: $bar/; # run-time pattern
917
918 ($foo = $bar) =~ s/this/that/;
919
920 $count = ($paragraph =~ s/Mister\b/Mr./g);
921
922 $_ = 'abc123xyz';
923 s/\d+/$&*2/e; # yields 'abc246xyz'
924 s/\d+/sprintf("%5d",$&)/e; # yields 'abc 246xyz'
925 s/\w/$& x 2/eg; # yields 'aabbcc 224466xxyyzz'
926
927 s/%(.)/$percent{$1}/g; # change percent escapes; no /e
928 s/%(.)/$percent{$1} || $&/ge; # expr now, so /e
929 s/^=(\w+)/&pod($1)/ge; # use function call
930
931 # /e's can even nest; this will expand
932 # simple embedded variables in $_
933 s/(\$\w+)/$1/eeg;
934
935 # Delete C comments.
936 $program =~ s {
4633a7c4 937 /\* # Match the opening delimiter.
938 .*? # Match a minimal number of characters.
939 \*/ # Match the closing delimiter.
a0d0e21e 940 } []gsx;
941
942 s/^\s*(.*?)\s*$/$1/; # trim white space
943
944 s/([^ ]*) *([^ ]*)/$2 $1/; # reverse 1st two fields
945
54310121 946Note the use of $ instead of \ in the last example. Unlike
5f05dabc 947B<sed>, we use the \E<lt>I<digit>E<gt> form in only the left hand side.
6ee5d4e7 948Anywhere else it's $E<lt>I<digit>E<gt>.
a0d0e21e 949
5f05dabc 950Occasionally, you can't use just a C</g> to get all the changes
a0d0e21e 951to occur. Here are two common cases:
952
953 # put commas in the right places in an integer
954 1 while s/(.*\d)(\d\d\d)/$1,$2/g; # perl4
955 1 while s/(\d)(\d\d\d)(?!\d)/$1,$2/g; # perl5
956
957 # expand tabs to 8-column spacing
958 1 while s/\t+/' ' x (length($&)*8 - length($`)%8)/e;
959
960
961=item tr/SEARCHLIST/REPLACEMENTLIST/cds
962
963=item y/SEARCHLIST/REPLACEMENTLIST/cds
964
2c268ad5 965Transliterates all occurrences of the characters found in the search list
a0d0e21e 966with the corresponding character in the replacement list. It returns
967the number of characters replaced or deleted. If no string is
2c268ad5 968specified via the =~ or !~ operator, the $_ string is transliterated. (The
54310121 969string specified with =~ must be a scalar variable, an array element, a
970hash element, or an assignment to one of those, i.e., an lvalue.)
2c268ad5 971A character range may be specified with a hyphen, so C<tr/A-J/0-9/>
972does the same replacement as C<tr/ACEGIBDFHJ/0246813579/>.
54310121 973For B<sed> devotees, C<y> is provided as a synonym for C<tr>. If the
974SEARCHLIST is delimited by bracketing quotes, the REPLACEMENTLIST has
975its own pair of quotes, which may or may not be bracketing quotes,
2c268ad5 976e.g., C<tr[A-Z][a-z]> or C<tr(+\-*/)/ABCD/>.
a0d0e21e 977
978Options:
979
980 c Complement the SEARCHLIST.
981 d Delete found but unreplaced characters.
982 s Squash duplicate replaced characters.
983
984If the C</c> modifier is specified, the SEARCHLIST character set is
985complemented. If the C</d> modifier is specified, any characters specified
986by SEARCHLIST not found in REPLACEMENTLIST are deleted. (Note
987that this is slightly more flexible than the behavior of some B<tr>
988programs, which delete anything they find in the SEARCHLIST, period.)
989If the C</s> modifier is specified, sequences of characters that were
2c268ad5 990transliterated to the same character are squashed down to a single instance of the
a0d0e21e 991character.
992
993If the C</d> modifier is used, the REPLACEMENTLIST is always interpreted
994exactly as specified. Otherwise, if the REPLACEMENTLIST is shorter
995than the SEARCHLIST, the final character is replicated till it is long
996enough. If the REPLACEMENTLIST is null, the SEARCHLIST is replicated.
997This latter is useful for counting characters in a class or for
998squashing character sequences in a class.
999
1000Examples:
1001
1002 $ARGV[1] =~ tr/A-Z/a-z/; # canonicalize to lower case
1003
1004 $cnt = tr/*/*/; # count the stars in $_
1005
1006 $cnt = $sky =~ tr/*/*/; # count the stars in $sky
1007
1008 $cnt = tr/0-9//; # count the digits in $_
1009
1010 tr/a-zA-Z//s; # bookkeeper -> bokeper
1011
1012 ($HOST = $host) =~ tr/a-z/A-Z/;
1013
1014 tr/a-zA-Z/ /cs; # change non-alphas to single space
1015
1016 tr [\200-\377]
1017 [\000-\177]; # delete 8th bit
1018
2c268ad5 1019If multiple transliterations are given for a character, only the first one is used:
748a9306 1020
1021 tr/AAA/XYZ/
1022
2c268ad5 1023will transliterate any A to X.
748a9306 1024
2c268ad5 1025Note that because the transliteration table is built at compile time, neither
a0d0e21e 1026the SEARCHLIST nor the REPLACEMENTLIST are subjected to double quote
1027interpolation. That means that if you want to use variables, you must use
1028an eval():
1029
1030 eval "tr/$oldlist/$newlist/";
1031 die $@ if $@;
1032
1033 eval "tr/$oldlist/$newlist/, 1" or die $@;
1034
1035=back
1036
1037=head2 I/O Operators
1038
54310121 1039There are several I/O operators you should know about.
7b8d334a 1040A string enclosed by backticks (grave accents) first undergoes
a0d0e21e 1041variable substitution just like a double quoted string. It is then
1042interpreted as a command, and the output of that command is the value
1043of the pseudo-literal, like in a shell. In a scalar context, a single
1044string consisting of all the output is returned. In a list context,
1045a list of values is returned, one for each line of output. (You can
1046set C<$/> to use a different line terminator.) The command is executed
1047each time the pseudo-literal is evaluated. The status value of the
1048command is returned in C<$?> (see L<perlvar> for the interpretation
1049of C<$?>). Unlike in B<csh>, no translation is done on the return
1050data--newlines remain newlines. Unlike in any of the shells, single
1051quotes do not hide variable names in the command from interpretation.
1052To pass a $ through to the shell you need to hide it with a backslash.
54310121 1053The generalized form of backticks is C<qx//>. (Because backticks
1054always undergo shell expansion as well, see L<perlsec> for
cb1a09d0 1055security concerns.)
a0d0e21e 1056
1057Evaluating a filehandle in angle brackets yields the next line from
aa689395 1058that file (newline, if any, included), or C<undef> at end of file.
1059Ordinarily you must assign that value to a variable, but there is one
1060situation where an automatic assignment happens. I<If and ONLY if> the
1061input symbol is the only thing inside the conditional of a C<while> or
1062C<for(;;)> loop, the value is automatically assigned to the variable
7b8d334a 1063C<$_>. In these loop constructs, the assigned value (whether assignment
1064is automatic or explcit) is then tested to see if it is defined.
1065The defined test avoids problems where line has a string value
1066that would be treated as false by perl e.g. "" or "0" with no trailing
1067newline. (This may seem like an odd thing to you, but you'll use the
1068construct in almost every Perl script you write.) Anyway, the following
1069lines are equivalent to each other:
a0d0e21e 1070
748a9306 1071 while (defined($_ = <STDIN>)) { print; }
7b8d334a 1072 while ($_ = <STDIN>) { print; }
a0d0e21e 1073 while (<STDIN>) { print; }
1074 for (;<STDIN>;) { print; }
748a9306 1075 print while defined($_ = <STDIN>);
7b8d334a 1076 print while ($_ = <STDIN>);
a0d0e21e 1077 print while <STDIN>;
1078
7b8d334a 1079and this also behaves similarly, but avoids the use of $_ :
1080
1081 while (my $line = <STDIN>) { print $line }
1082
1083If you really mean such values to terminate the loop they should be
1084tested for explcitly:
1085
1086 while (($_ = <STDIN>) ne '0') { ... }
1087 while (<STDIN>) { last unless $_; ... }
1088
1089In other boolean contexts C<E<lt>I<filehandle>E<gt>> without explcit C<defined>
1090test or comparison will solicit a warning if C<-w> is in effect.
1091
5f05dabc 1092The filehandles STDIN, STDOUT, and STDERR are predefined. (The
1093filehandles C<stdin>, C<stdout>, and C<stderr> will also work except in
a0d0e21e 1094packages, where they would be interpreted as local identifiers rather
1095than global.) Additional filehandles may be created with the open()
cb1a09d0 1096function. See L<perlfunc/open()> for details on this.
a0d0e21e 1097
6ee5d4e7 1098If a E<lt>FILEHANDLEE<gt> is used in a context that is looking for a list, a
a0d0e21e 1099list consisting of all the input lines is returned, one line per list
1100element. It's easy to make a I<LARGE> data space this way, so use with
1101care.
1102
d28ebecd 1103The null filehandle E<lt>E<gt> is special and can be used to emulate the
1104behavior of B<sed> and B<awk>. Input from E<lt>E<gt> comes either from
a0d0e21e 1105standard input, or from each file listed on the command line. Here's
d28ebecd 1106how it works: the first time E<lt>E<gt> is evaluated, the @ARGV array is
a0d0e21e 1107checked, and if it is null, C<$ARGV[0]> is set to "-", which when opened
1108gives you standard input. The @ARGV array is then processed as a list
1109of filenames. The loop
1110
1111 while (<>) {
1112 ... # code for each line
1113 }
1114
1115is equivalent to the following Perl-like pseudo code:
1116
3e3baf6d 1117 unshift(@ARGV, '-') unless @ARGV;
a0d0e21e 1118 while ($ARGV = shift) {
1119 open(ARGV, $ARGV);
1120 while (<ARGV>) {
1121 ... # code for each line
1122 }
1123 }
1124
1125except that it isn't so cumbersome to say, and will actually work. It
1126really does shift array @ARGV and put the current filename into variable
5f05dabc 1127$ARGV. It also uses filehandle I<ARGV> internally--E<lt>E<gt> is just a
1128synonym for E<lt>ARGVE<gt>, which is magical. (The pseudo code above
1129doesn't work because it treats E<lt>ARGVE<gt> as non-magical.)
a0d0e21e 1130
d28ebecd 1131You can modify @ARGV before the first E<lt>E<gt> as long as the array ends up
a0d0e21e 1132containing the list of filenames you really want. Line numbers (C<$.>)
1133continue as if the input were one big happy file. (But see example
1134under eof() for how to reset line numbers on each file.)
1135
1136If you want to set @ARGV to your own list of files, go right ahead. If
54310121 1137you want to pass switches into your script, you can use one of the
a0d0e21e 1138Getopts modules or put a loop on the front like this:
1139
1140 while ($_ = $ARGV[0], /^-/) {
1141 shift;
1142 last if /^--$/;
1143 if (/^-D(.*)/) { $debug = $1 }
1144 if (/^-v/) { $verbose++ }
1145 ... # other switches
1146 }
1147 while (<>) {
1148 ... # code for each line
1149 }
1150
7b8d334a 1151The E<lt>E<gt> symbol will return C<undef> for end-of-file only once.
1152If you call it again after this it will assume you are processing another
1153@ARGV list, and if you haven't set @ARGV, will input from STDIN.
a0d0e21e 1154
1155If the string inside the angle brackets is a reference to a scalar
5f05dabc 1156variable (e.g., E<lt>$fooE<gt>), then that variable contains the name of the
cb1a09d0 1157filehandle to input from, or a reference to the same. For example:
1158
1159 $fh = \*STDIN;
1160 $line = <$fh>;
a0d0e21e 1161
cb1a09d0 1162If the string inside angle brackets is not a filehandle or a scalar
1163variable containing a filehandle name or reference, then it is interpreted
4633a7c4 1164as a filename pattern to be globbed, and either a list of filenames or the
1165next filename in the list is returned, depending on context. One level of
1166$ interpretation is done first, but you can't say C<E<lt>$fooE<gt>>
1167because that's an indirect filehandle as explained in the previous
6ee5d4e7 1168paragraph. (In older versions of Perl, programmers would insert curly
4633a7c4 1169brackets to force interpretation as a filename glob: C<E<lt>${foo}E<gt>>.
d28ebecd 1170These days, it's considered cleaner to call the internal function directly
4633a7c4 1171as C<glob($foo)>, which is probably the right way to have done it in the
1172first place.) Example:
a0d0e21e 1173
1174 while (<*.c>) {
1175 chmod 0644, $_;
1176 }
1177
1178is equivalent to
1179
1180 open(FOO, "echo *.c | tr -s ' \t\r\f' '\\012\\012\\012\\012'|");
1181 while (<FOO>) {
1182 chop;
1183 chmod 0644, $_;
1184 }
1185
1186In fact, it's currently implemented that way. (Which means it will not
1187work on filenames with spaces in them unless you have csh(1) on your
1188machine.) Of course, the shortest way to do the above is:
1189
1190 chmod 0644, <*.c>;
1191
1192Because globbing invokes a shell, it's often faster to call readdir() yourself
5f05dabc 1193and do your own grep() on the filenames. Furthermore, due to its current
54310121 1194implementation of using a shell, the glob() routine may get "Arg list too
a0d0e21e 1195long" errors (unless you've installed tcsh(1L) as F</bin/csh>).
1196
5f05dabc 1197A glob evaluates its (embedded) argument only when it is starting a new
4633a7c4 1198list. All values must be read before it will start over. In a list
1199context this isn't important, because you automatically get them all
1200anyway. In a scalar context, however, the operator returns the next value
7b8d334a 1201each time it is called, or a C<undef> value if you've just run out. As
1202for filehandles an automatic C<defined> is generated when the glob
1203occurs in the test part of a C<while> or C<for> - because legal glob returns
1204(e.g. a file called F<0>) would otherwise terminate the loop.
1205Again, C<undef> is returned only once. So if you're expecting a single value
1206from a glob, it is much better to say
4633a7c4 1207
1208 ($file) = <blurch*>;
1209
1210than
1211
1212 $file = <blurch*>;
1213
1214because the latter will alternate between returning a filename and
54310121 1215returning FALSE.
4633a7c4 1216
1217It you're trying to do variable interpolation, it's definitely better
1218to use the glob() function, because the older notation can cause people
e37d713d 1219to become confused with the indirect filehandle notation.
4633a7c4 1220
1221 @files = glob("$dir/*.[ch]");
1222 @files = glob($files[$i]);
1223
a0d0e21e 1224=head2 Constant Folding
1225
1226Like C, Perl does a certain amount of expression evaluation at
1227compile time, whenever it determines that all of the arguments to an
1228operator are static and have no side effects. In particular, string
1229concatenation happens at compile time between literals that don't do
1230variable substitution. Backslash interpretation also happens at
1231compile time. You can say
1232
1233 'Now is the time for all' . "\n" .
1234 'good men to come to.'
1235
54310121 1236and this all reduces to one string internally. Likewise, if
a0d0e21e 1237you say
1238
1239 foreach $file (@filenames) {
1240 if (-s $file > 5 + 100 * 2**16) { ... }
54310121 1241 }
a0d0e21e 1242
54310121 1243the compiler will precompute the number that
a0d0e21e 1244expression represents so that the interpreter
1245won't have to.
1246
2c268ad5 1247=head2 Bitwise String Operators
1248
1249Bitstrings of any size may be manipulated by the bitwise operators
1250(C<~ | & ^>).
1251
1252If the operands to a binary bitwise op are strings of different sizes,
1253B<or> and B<xor> ops will act as if the shorter operand had additional
1254zero bits on the right, while the B<and> op will act as if the longer
1255operand were truncated to the length of the shorter.
1256
1257 # ASCII-based examples
1258 print "j p \n" ^ " a h"; # prints "JAPH\n"
1259 print "JA" | " ph\n"; # prints "japh\n"
1260 print "japh\nJunk" & '_____'; # prints "JAPH\n";
1261 print 'p N$' ^ " E<H\n"; # prints "Perl\n";
1262
1263If you are intending to manipulate bitstrings, you should be certain that
1264you're supplying bitstrings: If an operand is a number, that will imply
1265a B<numeric> bitwise operation. You may explicitly show which type of
1266operation you intend by using C<""> or C<0+>, as in the examples below.
1267
1268 $foo = 150 | 105 ; # yields 255 (0x96 | 0x69 is 0xFF)
1269 $foo = '150' | 105 ; # yields 255
1270 $foo = 150 | '105'; # yields 255
1271 $foo = '150' | '105'; # yields string '155' (under ASCII)
1272
1273 $baz = 0+$foo & 0+$bar; # both ops explicitly numeric
1274 $biz = "$foo" ^ "$bar"; # both ops explicitly stringy
a0d0e21e 1275
55497cff 1276=head2 Integer Arithmetic
a0d0e21e 1277
1278By default Perl assumes that it must do most of its arithmetic in
1279floating point. But by saying
1280
1281 use integer;
1282
1283you may tell the compiler that it's okay to use integer operations
1284from here to the end of the enclosing BLOCK. An inner BLOCK may
54310121 1285countermand this by saying
a0d0e21e 1286
1287 no integer;
1288
1289which lasts until the end of that BLOCK.
1290
55497cff 1291The bitwise operators ("&", "|", "^", "~", "<<", and ">>") always
2c268ad5 1292produce integral results. (But see also L<Bitwise String Operators>.)
1293However, C<use integer> still has meaning
55497cff 1294for them. By default, their results are interpreted as unsigned
1295integers. However, if C<use integer> is in effect, their results are
5f05dabc 1296interpreted as signed integers. For example, C<~0> usually evaluates
55497cff 1297to a large integral value. However, C<use integer; ~0> is -1.
68dc0745 1298
1299=head2 Floating-point Arithmetic
1300
1301While C<use integer> provides integer-only arithmetic, there is no
1302similar ways to provide rounding or truncation at a certain number of
1303decimal places. For rounding to a certain number of digits, sprintf()
1304or printf() is usually the easiest route.
1305
1306The POSIX module (part of the standard perl distribution) implements
1307ceil(), floor(), and a number of other mathematical and trigonometric
1308functions. The Math::Complex module (part of the standard perl
1309distribution) defines a number of mathematical functions that can also
1310work on real numbers. Math::Complex not as efficient as POSIX, but
1311POSIX can't work with complex numbers.
1312
1313Rounding in financial applications can have serious implications, and
1314the rounding method used should be specified precisely. In these
1315cases, it probably pays not to trust whichever system rounding is
1316being used by Perl, but to instead implement the rounding function you
1317need yourself.