c534234bddabbf054458514b79f3a06e452333c3
[p5sagit/p5-mst-13.2.git] / pod / perlop.pod
1 =head1 NAME
2
3 perlop - Perl operators and precedence
4
5 =head1 SYNOPSIS
6
7 Perl operators have the following associativity and precedence,
8 listed from highest precedence to lowest.  Note that all operators
9 borrowed from C keep the same precedence relationship with each other,
10 even where C's precedence is slightly screwy.  (This makes learning
11 Perl easier for C folks.)  With very few exceptions, these all
12 operate on scalar values only, not array values.
13
14     left        terms and list operators (leftward)
15     left        ->
16     nonassoc    ++ --
17     right       **
18     right       ! ~ \ and unary + and -
19     left        =~ !~
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        ||
30     nonassoc    ..  ...
31     right       ?:
32     right       = += -= *= etc.
33     left        , =>
34     nonassoc    list operators (rightward)
35     right       not
36     left        and
37     left        or xor
38
39 In the following sections, these operators are covered in precedence order.
40
41 Many operators can be overloaded for objects.  See L<overload>.
42
43 =head1 DESCRIPTION
44
45 =head2 Terms and List Operators (Leftward)
46
47 A TERM has the highest precedence in Perl.  They includes variables,
48 quote and quote-like operators, any expression in parentheses,
49 and any function whose arguments are parenthesized.  Actually, there
50 aren't really functions in this sense, just list operators and unary
51 operators behaving as functions because you put parentheses around
52 the arguments.  These are all documented in L<perlfunc>.
53
54 If any list operator (print(), etc.) or any unary operator (chdir(), etc.)
55 is followed by a left parenthesis as the next token, the operator and
56 arguments within parentheses are taken to be of highest precedence,
57 just like a normal function call.
58
59 In the absence of parentheses, the precedence of list operators such as
60 C<print>, C<sort>, or C<chmod> is either very high or very low depending on
61 whether you are looking at the left side or the right side of the operator.
62 For example, in
63
64     @ary = (1, 3, sort 4, 2);
65     print @ary;         # prints 1324
66
67 the commas on the right of the sort are evaluated before the sort, but
68 the commas on the left are evaluated after.  In other words, list
69 operators tend to gobble up all the arguments that follow them, and
70 then act like a simple TERM with regard to the preceding expression.
71 Note that you have to be careful with parentheses:
72
73     # These evaluate exit before doing the print:
74     print($foo, exit);  # Obviously not what you want.
75     print $foo, exit;   # Nor is this.
76
77     # These do the print before evaluating exit:
78     (print $foo), exit; # This is what you want.
79     print($foo), exit;  # Or this.
80     print ($foo), exit; # Or even this.
81
82 Also note that
83
84     print ($foo & 255) + 1, "\n";
85
86 probably doesn't do what you expect at first glance.  See
87 L<Named Unary Operators> for more discussion of this.
88
89 Also parsed as terms are the C<do {}> and C<eval {}> constructs, as
90 well as subroutine and method calls, and the anonymous
91 constructors C<[]> and C<{}>.
92
93 See also L<Quote and Quote-like Operators> toward the end of this section,
94 as well as L<"I/O Operators">.
95
96 =head2 The Arrow Operator
97
98 Just as in C and C++, "C<-E<gt>>" is an infix dereference operator.  If the
99 right side is either a C<[...]> or C<{...}> subscript, then the left side
100 must be either a hard or symbolic reference to an array or hash (or
101 a location capable of holding a hard reference, if it's an lvalue (assignable)).
102 See L<perlref>.
103
104 Otherwise, the right side is a method name or a simple scalar variable
105 containing the method name, and the left side must either be an object
106 (a blessed reference) or a class name (that is, a package name).
107 See L<perlobj>.
108
109 =head2 Auto-increment and Auto-decrement
110
111 "++" and "--" work as in C.  That is, if placed before a variable, they
112 increment or decrement the variable before returning the value, and if
113 placed after, increment or decrement the variable after returning the value.
114
115 The auto-increment operator has a little extra builtin magic to it.  If
116 you increment a variable that is numeric, or that has ever been used in
117 a numeric context, you get a normal increment.  If, however, the
118 variable has been used in only string contexts since it was set, and
119 has a value that is not the empty string and matches the pattern
120 C</^[a-zA-Z]*[0-9]*$/>, the increment is done as a string, preserving each
121 character within its range, with carry:
122
123     print ++($foo = '99');      # prints '100'
124     print ++($foo = 'a0');      # prints 'a1'
125     print ++($foo = 'Az');      # prints 'Ba'
126     print ++($foo = 'zz');      # prints 'aaa'
127
128 The auto-decrement operator is not magical.
129
130 =head2 Exponentiation
131
132 Binary "**" is the exponentiation operator.  Note that it binds even more
133 tightly than unary minus, so -2**4 is -(2**4), not (-2)**4. (This is
134 implemented using C's pow(3) function, which actually works on doubles
135 internally.)
136
137 =head2 Symbolic Unary Operators
138
139 Unary "!" performs logical negation, i.e., "not".  See also C<not> for a lower
140 precedence version of this.
141
142 Unary "-" performs arithmetic negation if the operand is numeric.  If
143 the operand is an identifier, a string consisting of a minus sign
144 concatenated with the identifier is returned.  Otherwise, if the string
145 starts with a plus or minus, a string starting with the opposite sign
146 is returned.  One effect of these rules is that C<-bareword> is equivalent
147 to C<"-bareword">.
148
149 Unary "~" performs bitwise negation, i.e., 1's complement.  For example,
150 C<0666 &~ 027> is 0640.  (See also L<Integer Arithmetic> and L<Bitwise
151 String Operators>.)
152
153 Unary "+" has no effect whatsoever, even on strings.  It is useful
154 syntactically for separating a function name from a parenthesized expression
155 that would otherwise be interpreted as the complete list of function
156 arguments.  (See examples above under L<Terms and List Operators (Leftward)>.)
157
158 Unary "\" creates a reference to whatever follows it.  See L<perlref>.
159 Do not confuse this behavior with the behavior of backslash within a
160 string, although both forms do convey the notion of protecting the next
161 thing from interpretation.
162
163 =head2 Binding Operators
164
165 Binary "=~" binds a scalar expression to a pattern match.  Certain operations
166 search or modify the string $_ by default.  This operator makes that kind
167 of operation work on some other string.  The right argument is a search
168 pattern, substitution, or transliteration.  The left argument is what is
169 supposed to be searched, substituted, or transliterated instead of the default
170 $_.  The return value indicates the success of the operation.  (If the
171 right argument is an expression rather than a search pattern,
172 substitution, or transliteration, it is interpreted as a search pattern at run
173 time.  This can be is less efficient than an explicit search, because the
174 pattern must be compiled every time the expression is evaluated.
175
176 Binary "!~" is just like "=~" except the return value is negated in
177 the logical sense.
178
179 =head2 Multiplicative Operators
180
181 Binary "*" multiplies two numbers.
182
183 Binary "/" divides two numbers.
184
185 Binary "%" computes the modulus of two numbers.  Given integer
186 operands C<$a> and C<$b>: If C<$b> is positive, then C<$a % $b> is
187 C<$a> minus the largest multiple of C<$b> that is not greater than
188 C<$a>.  If C<$b> is negative, then C<$a % $b> is C<$a> minus the
189 smallest multiple of C<$b> that is not less than C<$a> (i.e. the
190 result will be less than or equal to zero).  If C<use integer> is
191 in effect, the native hardware will be used instead of this rule,
192 which may be construed a bug that will be fixed at some point.
193
194 Note than when C<use integer> is in scope, "%" give you direct access
195 to the modulus operator as implemented by your C compiler.  This
196 operator is not as well defined for negative operands, but it will
197 execute faster.
198
199 Binary "x" is the repetition operator.  In scalar context, it
200 returns a string consisting of the left operand repeated the number of
201 times specified by the right operand.  In list context, if the left
202 operand is a list in parentheses, it repeats the list.
203
204     print '-' x 80;             # print row of dashes
205
206     print "\t" x ($tab/8), ' ' x ($tab%8);      # tab over
207
208     @ones = (1) x 80;           # a list of 80 1's
209     @ones = (5) x @ones;        # set all elements to 5
210
211
212 =head2 Additive Operators
213
214 Binary "+" returns the sum of two numbers.
215
216 Binary "-" returns the difference of two numbers.
217
218 Binary "." concatenates two strings.
219
220 =head2 Shift Operators
221
222 Binary "<<" returns the value of its left argument shifted left by the
223 number of bits specified by the right argument.  Arguments should be
224 integers.  (See also L<Integer Arithmetic>.)
225
226 Binary ">>" returns the value of its left argument shifted right by
227 the number of bits specified by the right argument.  Arguments should
228 be integers.  (See also L<Integer Arithmetic>.)
229
230 =head2 Named Unary Operators
231
232 The various named unary operators are treated as functions with one
233 argument, with optional parentheses.  These include the filetest
234 operators, like C<-f>, C<-M>, etc.  See L<perlfunc>.
235
236 If any list operator (print(), etc.) or any unary operator (chdir(), etc.)
237 is followed by a left parenthesis as the next token, the operator and
238 arguments within parentheses are taken to be of highest precedence,
239 just like a normal function call.  Examples:
240
241     chdir $foo    || die;       # (chdir $foo) || die
242     chdir($foo)   || die;       # (chdir $foo) || die
243     chdir ($foo)  || die;       # (chdir $foo) || die
244     chdir +($foo) || die;       # (chdir $foo) || die
245
246 but, because * is higher precedence than ||:
247
248     chdir $foo * 20;    # chdir ($foo * 20)
249     chdir($foo) * 20;   # (chdir $foo) * 20
250     chdir ($foo) * 20;  # (chdir $foo) * 20
251     chdir +($foo) * 20; # chdir ($foo * 20)
252
253     rand 10 * 20;       # rand (10 * 20)
254     rand(10) * 20;      # (rand 10) * 20
255     rand (10) * 20;     # (rand 10) * 20
256     rand +(10) * 20;    # rand (10 * 20)
257
258 See also L<"Terms and List Operators (Leftward)">.
259
260 =head2 Relational Operators
261
262 Binary "E<lt>" returns true if the left argument is numerically less than
263 the right argument.
264
265 Binary "E<gt>" returns true if the left argument is numerically greater
266 than the right argument.
267
268 Binary "E<lt>=" returns true if the left argument is numerically less than
269 or equal to the right argument.
270
271 Binary "E<gt>=" returns true if the left argument is numerically greater
272 than or equal to the right argument.
273
274 Binary "lt" returns true if the left argument is stringwise less than
275 the right argument.
276
277 Binary "gt" returns true if the left argument is stringwise greater
278 than the right argument.
279
280 Binary "le" returns true if the left argument is stringwise less than
281 or equal to the right argument.
282
283 Binary "ge" returns true if the left argument is stringwise greater
284 than or equal to the right argument.
285
286 =head2 Equality Operators
287
288 Binary "==" returns true if the left argument is numerically equal to
289 the right argument.
290
291 Binary "!=" returns true if the left argument is numerically not equal
292 to the right argument.
293
294 Binary "E<lt>=E<gt>" returns -1, 0, or 1 depending on whether the left
295 argument is numerically less than, equal to, or greater than the right
296 argument.
297
298 Binary "eq" returns true if the left argument is stringwise equal to
299 the right argument.
300
301 Binary "ne" returns true if the left argument is stringwise not equal
302 to the right argument.
303
304 Binary "cmp" returns -1, 0, or 1 depending on whether the left argument is stringwise
305 less than, equal to, or greater than the right argument.
306
307 "lt", "le", "ge", "gt" and "cmp" use the collation (sort) order specified
308 by the current locale if C<use locale> is in effect.  See L<perllocale>.
309
310 =head2 Bitwise And
311
312 Binary "&" returns its operators ANDed together bit by bit.
313 (See also L<Integer Arithmetic> and L<Bitwise String Operators>.)
314
315 =head2 Bitwise Or and Exclusive Or
316
317 Binary "|" returns its operators ORed together bit by bit.
318 (See also L<Integer Arithmetic> and L<Bitwise String Operators>.)
319
320 Binary "^" returns its operators XORed together bit by bit.
321 (See also L<Integer Arithmetic> and L<Bitwise String Operators>.)
322
323 =head2 C-style Logical And
324
325 Binary "&&" performs a short-circuit logical AND operation.  That is,
326 if the left operand is false, the right operand is not even evaluated.
327 Scalar or list context propagates down to the right operand if it
328 is evaluated.
329
330 =head2 C-style Logical Or
331
332 Binary "||" performs a short-circuit logical OR operation.  That is,
333 if the left operand is true, the right operand is not even evaluated.
334 Scalar or list context propagates down to the right operand if it
335 is evaluated.
336
337 The C<||> and C<&&> operators differ from C's in that, rather than returning
338 0 or 1, they return the last value evaluated.  Thus, a reasonably portable
339 way to find out the home directory (assuming it's not "0") might be:
340
341     $home = $ENV{'HOME'} || $ENV{'LOGDIR'} ||
342         (getpwuid($<))[7] || die "You're homeless!\n";
343
344 In particular, this means that you shouldn't use this
345 for selecting between two aggregates for assignment:
346
347     @a = @b || @c;              # this is wrong
348     @a = scalar(@b) || @c;      # really meant this
349     @a = @b ? @b : @c;          # this works fine, though
350
351 As more readable alternatives to C<&&> and C<||> when used for
352 control flow, Perl provides C<and> and C<or> operators (see below).
353 The short-circuit behavior is identical.  The precedence of "and" and
354 "or" is much lower, however, so that you can safely use them after a
355 list operator without the need for parentheses:
356
357     unlink "alpha", "beta", "gamma"
358             or gripe(), next LINE;
359
360 With the C-style operators that would have been written like this:
361
362     unlink("alpha", "beta", "gamma")
363             || (gripe(), next LINE);
364
365 Use "or" for assignment is unlikely to do what you want; see below.
366
367 =head2 Range Operators
368
369 Binary ".." is the range operator, which is really two different
370 operators depending on the context.  In list context, it returns an
371 array of values counting (by ones) from the left value to the right
372 value.  This is useful for writing C<for (1..10)> loops and for doing
373 slice operations on arrays.  Be aware that under the current implementation,
374 a temporary array is created, so you'll burn a lot of memory if you
375 write something like this:
376
377     for (1 .. 1_000_000) {
378         # code
379     }
380
381 In scalar context, ".." returns a boolean value.  The operator is
382 bistable, like a flip-flop, and emulates the line-range (comma) operator
383 of B<sed>, B<awk>, and various editors.  Each ".." operator maintains its
384 own boolean state.  It is false as long as its left operand is false.
385 Once the left operand is true, the range operator stays true until the
386 right operand is true, I<AFTER> which the range operator becomes false
387 again.  (It doesn't become false till the next time the range operator is
388 evaluated.  It can test the right operand and become false on the same
389 evaluation it became true (as in B<awk>), but it still returns true once.
390 If you don't want it to test the right operand till the next evaluation
391 (as in B<sed>), use three dots ("...") instead of two.)  The right
392 operand is not evaluated while the operator is in the "false" state, and
393 the left operand is not evaluated while the operator is in the "true"
394 state.  The precedence is a little lower than || and &&.  The value
395 returned is either the empty string for false, or a sequence number
396 (beginning with 1) for true.  The sequence number is reset for each range
397 encountered.  The final sequence number in a range has the string "E0"
398 appended to it, which doesn't affect its numeric value, but gives you
399 something to search for if you want to exclude the endpoint.  You can
400 exclude the beginning point by waiting for the sequence number to be
401 greater than 1.  If either operand of scalar ".." is a numeric literal,
402 that operand is implicitly compared to the C<$.> variable, the current
403 line number.  Examples:
404
405 As a scalar operator:
406
407     if (101 .. 200) { print; }  # print 2nd hundred lines
408     next line if (1 .. /^$/);   # skip header lines
409     s/^/> / if (/^$/ .. eof()); # quote body
410
411     # parse mail messages
412     while (<>) {
413         $in_header =   1  .. /^$/;
414         $in_body   = /^$/ .. eof();
415         # do something based on those
416     } continue {
417         close ARGV if eof;              # reset $. each file
418     }
419
420 As a list operator:
421
422     for (101 .. 200) { print; } # print $_ 100 times
423     @foo = @foo[0 .. $#foo];    # an expensive no-op
424     @foo = @foo[$#foo-4 .. $#foo];      # slice last 5 items
425
426 The range operator (in list context) makes use of the magical
427 auto-increment algorithm if the operands are strings.  You
428 can say
429
430     @alphabet = ('A' .. 'Z');
431
432 to get all the letters of the alphabet, or
433
434     $hexdigit = (0 .. 9, 'a' .. 'f')[$num & 15];
435
436 to get a hexadecimal digit, or
437
438     @z2 = ('01' .. '31');  print $z2[$mday];
439
440 to get dates with leading zeros.  If the final value specified is not
441 in the sequence that the magical increment would produce, the sequence
442 goes until the next value would be longer than the final value
443 specified.
444
445 =head2 Conditional Operator
446
447 Ternary "?:" is the conditional operator, just as in C.  It works much
448 like an if-then-else.  If the argument before the ? is true, the
449 argument before the : is returned, otherwise the argument after the :
450 is returned.  For example:
451
452     printf "I have %d dog%s.\n", $n,
453             ($n == 1) ? '' : "s";
454
455 Scalar or list context propagates downward into the 2nd
456 or 3rd argument, whichever is selected.
457
458     $a = $ok ? $b : $c;  # get a scalar
459     @a = $ok ? @b : @c;  # get an array
460     $a = $ok ? @b : @c;  # oops, that's just a count!
461
462 The operator may be assigned to if both the 2nd and 3rd arguments are
463 legal lvalues (meaning that you can assign to them):
464
465     ($a_or_b ? $a : $b) = $c;
466
467 This is not necessarily guaranteed to contribute to the readability of your program.
468
469 Because this operator produces an assignable result, using assignments
470 without parentheses will get you in trouble.  For example, this:
471
472     $a % 2 ? $a += 10 : $a += 2
473
474 Really means this:
475
476     (($a % 2) ? ($a += 10) : $a) += 2
477
478 Rather than this:
479
480     ($a % 2) ? ($a += 10) : ($a += 2)
481
482 =head2 Assignment Operators
483
484 "=" is the ordinary assignment operator.
485
486 Assignment operators work as in C.  That is,
487
488     $a += 2;
489
490 is equivalent to
491
492     $a = $a + 2;
493
494 although without duplicating any side effects that dereferencing the lvalue
495 might trigger, such as from tie().  Other assignment operators work similarly.
496 The following are recognized:
497
498     **=    +=    *=    &=    <<=    &&=
499            -=    /=    |=    >>=    ||=
500            .=    %=    ^=
501                  x=
502
503 Note that while these are grouped by family, they all have the precedence
504 of assignment.
505
506 Unlike in C, the assignment operator produces a valid lvalue.  Modifying
507 an assignment is equivalent to doing the assignment and then modifying
508 the variable that was assigned to.  This is useful for modifying
509 a copy of something, like this:
510
511     ($tmp = $global) =~ tr [A-Z] [a-z];
512
513 Likewise,
514
515     ($a += 2) *= 3;
516
517 is equivalent to
518
519     $a += 2;
520     $a *= 3;
521
522 =head2 Comma Operator
523
524 Binary "," is the comma operator.  In scalar context it evaluates
525 its left argument, throws that value away, then evaluates its right
526 argument and returns that value.  This is just like C's comma operator.
527
528 In list context, it's just the list argument separator, and inserts
529 both its arguments into the list.
530
531 The =E<gt> digraph is mostly just a synonym for the comma operator.  It's useful for
532 documenting arguments that come in pairs.  As of release 5.001, it also forces
533 any word to the left of it to be interpreted as a string.
534
535 =head2 List Operators (Rightward)
536
537 On the right side of a list operator, it has very low precedence,
538 such that it controls all comma-separated expressions found there.
539 The only operators with lower precedence are the logical operators
540 "and", "or", and "not", which may be used to evaluate calls to list
541 operators without the need for extra parentheses:
542
543     open HANDLE, "filename"
544         or die "Can't open: $!\n";
545
546 See also discussion of list operators in L<Terms and List Operators (Leftward)>.
547
548 =head2 Logical Not
549
550 Unary "not" returns the logical negation of the expression to its right.
551 It's the equivalent of "!" except for the very low precedence.
552
553 =head2 Logical And
554
555 Binary "and" returns the logical conjunction of the two surrounding
556 expressions.  It's equivalent to && except for the very low
557 precedence.  This means that it short-circuits: i.e., the right
558 expression is evaluated only if the left expression is true.
559
560 =head2 Logical or and Exclusive Or
561
562 Binary "or" returns the logical disjunction of the two surrounding
563 expressions.  It's equivalent to || except for the very low precedence.
564 This makes it useful for control flow
565
566     print FH $data              or die "Can't write to FH: $!";
567
568 This means that it short-circuits: i.e., the right expression is evaluated
569 only if the left expression is false.  Due to its precedence, you should
570 probably avoid using this for assignment, only for control flow.
571
572     $a = $b or $c;              # bug: this is wrong
573     ($a = $b) or $c;            # really means this
574     $a = $b || $c;              # better written this way
575
576 However, when it's a list context assignment and you're trying to use
577 "||" for control flow, you probably need "or" so that the assignment
578 takes higher precedence.
579
580     @info = stat($file) || die;     # oops, scalar sense of stat!
581     @info = stat($file) or die;     # better, now @info gets its due
582
583 Then again, you could always use parentheses.
584
585 Binary "xor" returns the exclusive-OR of the two surrounding expressions.
586 It cannot short circuit, of course.
587
588 =head2 C Operators Missing From Perl
589
590 Here is what C has that Perl doesn't:
591
592 =over 8
593
594 =item unary &
595
596 Address-of operator.  (But see the "\" operator for taking a reference.)
597
598 =item unary *
599
600 Dereference-address operator. (Perl's prefix dereferencing
601 operators are typed: $, @, %, and &.)
602
603 =item (TYPE)
604
605 Type casting operator.
606
607 =back
608
609 =head2 Quote and Quote-like Operators
610
611 While we usually think of quotes as literal values, in Perl they
612 function as operators, providing various kinds of interpolating and
613 pattern matching capabilities.  Perl provides customary quote characters
614 for these behaviors, but also provides a way for you to choose your
615 quote character for any of them.  In the following table, a C<{}> represents
616 any pair of delimiters you choose.  Non-bracketing delimiters use
617 the same character fore and aft, but the 4 sorts of brackets
618 (round, angle, square, curly) will all nest.
619
620     Customary  Generic        Meaning        Interpolates
621         ''       q{}          Literal             no
622         ""      qq{}          Literal             yes
623         ``      qx{}          Command             yes (unless '' is delimiter)
624                 qw{}         Word list            no
625         //       m{}       Pattern match          yes
626                  s{}{}      Substitution          yes
627                 tr{}{}    Transliteration         no (but see below)
628
629 Note that there can be whitespace between the operator and the quoting
630 characters, except when C<#> is being used as the quoting character.
631 C<q#foo#> is parsed as being the string C<foo>, while C<q #foo#> is the
632 operator C<q> followed by a comment. Its argument will be taken from the
633 next line. This allows you to write:
634
635     s {foo}  # Replace foo
636       {bar}  # with bar.
637
638 For constructs that do interpolation, variables beginning with "C<$>"
639 or "C<@>" are interpolated, as are the following sequences. Within
640 a transliteration, the first ten of these sequences may be used.
641
642     \t          tab             (HT, TAB)
643     \n          newline         (NL)
644     \r          return          (CR)
645     \f          form feed       (FF)
646     \b          backspace       (BS)
647     \a          alarm (bell)    (BEL)
648     \e          escape          (ESC)
649     \033        octal char
650     \x1b        hex char
651     \c[         control char
652
653     \l          lowercase next char
654     \u          uppercase next char
655     \L          lowercase till \E
656     \U          uppercase till \E
657     \E          end case modification
658     \Q          quote non-word characters till \E
659
660 If C<use locale> is in effect, the case map used by C<\l>, C<\L>, C<\u>
661 and C<\U> is taken from the current locale.  See L<perllocale>.
662
663 All systems use the virtual C<"\n"> to represent a line terminator,
664 called a "newline".  There is no such thing as an unvarying, physical
665 newline character.  It is an illusion that the operating system,
666 device drivers, C libraries, and Perl all conspire to preserve.  Not all
667 systems read C<"\r"> as ASCII CR and C<"\n"> as ASCII LF.  For example,
668 on a Mac, these are reversed, and on systems without line terminator,
669 printing C<"\n"> may emit no actual data.  In general, use C<"\n"> when
670 you mean a "newline" for your system, but use the literal ASCII when you
671 need an exact character.  For example, most networking protocols expect
672 and prefer a CR+LF (C<"\012\015"> or C<"\cJ\cM">) for line terminators,
673 and although they often accept just C<"\012">, they seldom tolerate just
674 C<"\015">.  If you get in the habit of using C<"\n"> for networking,
675 you may be burned some day.
676
677 You cannot include a literal C<$> or C<@> within a C<\Q> sequence. 
678 An unescaped C<$> or C<@> interpolates the corresponding variable, 
679 while escaping will cause the literal string C<\$> to be inserted.
680 You'll need to write something like C<m/\Quser\E\@\Qhost/>. 
681
682 Patterns are subject to an additional level of interpretation as a
683 regular expression.  This is done as a second pass, after variables are
684 interpolated, so that regular expressions may be incorporated into the
685 pattern from the variables.  If this is not what you want, use C<\Q> to
686 interpolate a variable literally.
687
688 Apart from the above, there are no multiple levels of interpolation.  In
689 particular, contrary to the expectations of shell programmers, back-quotes
690 do I<NOT> interpolate within double quotes, nor do single quotes impede
691 evaluation of variables when used within double quotes.
692
693 =head2 Regexp Quote-Like Operators
694
695 Here are the quote-like operators that apply to pattern
696 matching and related activities.
697
698 Most of this section is related to use of regular expressions from Perl.
699 Such a use may be considered from two points of view: Perl handles a
700 a string and a "pattern" to RE (regular expression) engine to match, 
701 RE engine finds (or does not find) the match, and Perl uses the findings 
702 of RE engine for its operation, possibly asking the engine for other matches.
703
704 RE engine has no idea what Perl is going to do with what it finds, 
705 similarly, the rest of Perl has no idea what a particular regular expression 
706 means to RE engine.  This creates a clean separation, and in this section
707 we discuss matching from Perl point of view only.  The other point of
708 view may be found in L<perlre>.
709
710 =over 8
711
712 =item ?PATTERN?
713
714 This is just like the C</pattern/> search, except that it matches only
715 once between calls to the reset() operator.  This is a useful
716 optimization when you want to see only the first occurrence of
717 something in each file of a set of files, for instance.  Only C<??>
718 patterns local to the current package are reset.
719
720     while (<>) {
721         if (?^$?) {
722                             # blank line between header and body
723         }
724     } continue {
725         reset if eof;       # clear ?? status for next file
726     }
727
728 This usage is vaguely deprecated, and may be removed in some future
729 version of Perl.
730
731 =item m/PATTERN/cgimosx
732
733 =item /PATTERN/cgimosx
734
735 Searches a string for a pattern match, and in scalar context returns
736 true (1) or false ('').  If no string is specified via the C<=~> or
737 C<!~> operator, the $_ string is searched.  (The string specified with
738 C<=~> need not be an lvalue--it may be the result of an expression
739 evaluation, but remember the C<=~> binds rather tightly.)  See also
740 L<perlre>.
741 See L<perllocale> for discussion of additional considerations that apply
742 when C<use locale> is in effect.
743
744 Options are:
745
746     c   Do not reset search position on a failed match when /g is in effect.
747     g   Match globally, i.e., find all occurrences.
748     i   Do case-insensitive pattern matching.
749     m   Treat string as multiple lines.
750     o   Compile pattern only once.
751     s   Treat string as single line.
752     t   Taint $1 etc. if target string is tainted.
753     x   Use extended regular expressions.
754
755 If "/" is the delimiter then the initial C<m> is optional.  With the C<m>
756 you can use any pair of non-alphanumeric, non-whitespace characters 
757 as delimiters (if single quotes are used, no interpretation is done
758 on the replacement string. Unlike Perl 4, Perl 5 treats backticks as normal
759 delimiters; the replacement text is not evaluated as a command).
760 This is particularly useful for matching Unix path names
761 that contain "/", to avoid LTS (leaning toothpick syndrome).  If "?" is
762 the delimiter, then the match-only-once rule of C<?PATTERN?> applies.
763
764 PATTERN may contain variables, which will be interpolated (and the
765 pattern recompiled) every time the pattern search is evaluated.  (Note
766 that C<$)> and C<$|> might not be interpolated because they look like
767 end-of-string tests.)  If you want such a pattern to be compiled only
768 once, add a C</o> after the trailing delimiter.  This avoids expensive
769 run-time recompilations, and is useful when the value you are
770 interpolating won't change over the life of the script.  However, mentioning
771 C</o> constitutes a promise that you won't change the variables in the pattern.
772 If you change them, Perl won't even notice.
773
774 If the PATTERN evaluates to the empty string, the last
775 I<successfully> matched regular expression is used instead.
776
777 If used in a context that requires a list value, a pattern match returns a
778 list consisting of the subexpressions matched by the parentheses in the
779 pattern, i.e., (C<$1>, $2, $3...).  (Note that here $1 etc. are also set, and
780 that this differs from Perl 4's behavior.)  If there are no parentheses,
781 the return value is the list C<(1)> for success or C<('')> upon failure.
782 With parentheses, C<()> is returned upon failure.
783
784 Examples:
785
786     open(TTY, '/dev/tty');
787     <TTY> =~ /^y/i && foo();    # do foo if desired
788
789     if (/Version: *([0-9.]*)/) { $version = $1; }
790
791     next if m#^/usr/spool/uucp#;
792
793     # poor man's grep
794     $arg = shift;
795     while (<>) {
796         print if /$arg/o;       # compile only once
797     }
798
799     if (($F1, $F2, $Etc) = ($foo =~ /^(\S+)\s+(\S+)\s*(.*)/))
800
801 This last example splits $foo into the first two words and the
802 remainder of the line, and assigns those three fields to $F1, $F2, and
803 $Etc.  The conditional is true if any variables were assigned, i.e., if
804 the pattern matched.
805
806 The C</g> modifier specifies global pattern matching--that is, matching
807 as many times as possible within the string.  How it behaves depends on
808 the context.  In list context, it returns a list of all the
809 substrings matched by all the parentheses in the regular expression.
810 If there are no parentheses, it returns a list of all the matched
811 strings, as if there were parentheses around the whole pattern.
812
813 In scalar context, C<m//g> iterates through the string, returning TRUE
814 each time it matches, and FALSE when it eventually runs out of matches.
815 (In other words, it remembers where it left off last time and restarts
816 the search at that point.  You can actually find the current match
817 position of a string or set it using the pos() function; see
818 L<perlfunc/pos>.)  A failed match normally resets the search position to
819 the beginning of the string, but you can avoid that by adding the C</c>
820 modifier (e.g. C<m//gc>).  Modifying the target string also resets the
821 search position.
822
823 You can intermix C<m//g> matches with C<m/\G.../g>, where C<\G> is a
824 zero-width assertion that matches the exact position where the previous
825 C<m//g>, if any, left off.  The C<\G> assertion is not supported without
826 the C</g> modifier; currently, without C</g>, C<\G> behaves just like
827 C<\A>, but that's accidental and may change in the future.
828
829 Examples:
830
831     # list context
832     ($one,$five,$fifteen) = (`uptime` =~ /(\d+\.\d+)/g);
833
834     # scalar context
835     $/ = ""; $* = 1;  # $* deprecated in modern perls
836     while (defined($paragraph = <>)) {
837         while ($paragraph =~ /[a-z]['")]*[.!?]+['")]*\s/g) {
838             $sentences++;
839         }
840     }
841     print "$sentences\n";
842
843     # using m//gc with \G
844     $_ = "ppooqppqq";
845     while ($i++ < 2) {
846         print "1: '";
847         print $1 while /(o)/gc; print "', pos=", pos, "\n";
848         print "2: '";
849         print $1 if /\G(q)/gc;  print "', pos=", pos, "\n";
850         print "3: '";
851         print $1 while /(p)/gc; print "', pos=", pos, "\n";
852     }
853
854 The last example should print:
855
856     1: 'oo', pos=4
857     2: 'q', pos=5
858     3: 'pp', pos=7
859     1: '', pos=7
860     2: 'q', pos=8
861     3: '', pos=8
862
863 A useful idiom for C<lex>-like scanners is C</\G.../gc>.  You can
864 combine several regexps like this to process a string part-by-part,
865 doing different actions depending on which regexp matched.  Each
866 regexp tries to match where the previous one leaves off.
867
868  $_ = <<'EOL';
869       $url = new URI::URL "http://www/";   die if $url eq "xXx";
870  EOL
871  LOOP:
872     {
873       print(" digits"),         redo LOOP if /\G\d+\b[,.;]?\s*/gc;
874       print(" lowercase"),      redo LOOP if /\G[a-z]+\b[,.;]?\s*/gc;
875       print(" UPPERCASE"),      redo LOOP if /\G[A-Z]+\b[,.;]?\s*/gc;
876       print(" Capitalized"),    redo LOOP if /\G[A-Z][a-z]+\b[,.;]?\s*/gc;
877       print(" MiXeD"),          redo LOOP if /\G[A-Za-z]+\b[,.;]?\s*/gc;
878       print(" alphanumeric"),   redo LOOP if /\G[A-Za-z0-9]+\b[,.;]?\s*/gc;
879       print(" line-noise"),     redo LOOP if /\G[^A-Za-z0-9]+/gc;
880       print ". That's all!\n";
881     }
882
883 Here is the output (split into several lines):
884
885  line-noise lowercase line-noise lowercase UPPERCASE line-noise
886  UPPERCASE line-noise lowercase line-noise lowercase line-noise
887  lowercase lowercase line-noise lowercase lowercase line-noise
888  MiXeD line-noise. That's all!
889
890 =item q/STRING/
891
892 =item C<'STRING'>
893
894 A single-quoted, literal string. A backslash represents a backslash
895 unless followed by the delimiter or another backslash, in which case
896 the delimiter or backslash is interpolated.
897
898     $foo = q!I said, "You said, 'She said it.'"!;
899     $bar = q('This is it.');
900     $baz = '\n';                # a two-character string
901
902 =item qq/STRING/
903
904 =item "STRING"
905
906 A double-quoted, interpolated string.
907
908     $_ .= qq
909      (*** The previous line contains the naughty word "$1".\n)
910                 if /(tcl|rexx|python)/;      # :-)
911     $baz = "\n";                # a one-character string
912
913 =item qx/STRING/
914
915 =item `STRING`
916
917 A string which is (possibly) interpolated and then executed as a system
918 command with C</bin/sh> or its equivalent.  Shell wildcards, pipes,
919 and redirections will be honored.  The collected standard output of the
920 command is returned; standard error is unaffected.  In scalar context,
921 it comes back as a single (potentially multi-line) string.  In list
922 context, returns a list of lines (however you've defined lines with $/
923 or $INPUT_RECORD_SEPARATOR).
924
925 Because backticks do not affect standard error, use shell file descriptor
926 syntax (assuming the shell supports this) if you care to address this.
927 To capture a command's STDERR and STDOUT together:
928
929     $output = `cmd 2>&1`;
930
931 To capture a command's STDOUT but discard its STDERR:
932
933     $output = `cmd 2>/dev/null`;
934
935 To capture a command's STDERR but discard its STDOUT (ordering is
936 important here):
937
938     $output = `cmd 2>&1 1>/dev/null`;
939
940 To exchange a command's STDOUT and STDERR in order to capture the STDERR
941 but leave its STDOUT to come out the old STDERR:
942
943     $output = `cmd 3>&1 1>&2 2>&3 3>&-`;
944
945 To read both a command's STDOUT and its STDERR separately, it's easiest
946 and safest to redirect them separately to files, and then read from those
947 files when the program is done:
948
949     system("program args 1>/tmp/program.stdout 2>/tmp/program.stderr");
950
951 Using single-quote as a delimiter protects the command from Perl's
952 double-quote interpolation, passing it on to the shell instead:
953
954     $perl_info  = qx(ps $$);            # that's Perl's $$
955     $shell_info = qx'ps $$';            # that's the new shell's $$
956
957 Note that how the string gets evaluated is entirely subject to the command
958 interpreter on your system.  On most platforms, you will have to protect
959 shell metacharacters if you want them treated literally.  This is in
960 practice difficult to do, as it's unclear how to escape which characters.
961 See L<perlsec> for a clean and safe example of a manual fork() and exec()
962 to emulate backticks safely.
963
964 On some platforms (notably DOS-like ones), the shell may not be
965 capable of dealing with multiline commands, so putting newlines in
966 the string may not get you what you want.  You may be able to evaluate
967 multiple commands in a single line by separating them with the command
968 separator character, if your shell supports that (e.g. C<;> on many Unix
969 shells; C<&> on the Windows NT C<cmd> shell).
970
971 Beware that some command shells may place restrictions on the length
972 of the command line.  You must ensure your strings don't exceed this
973 limit after any necessary interpolations.  See the platform-specific
974 release notes for more details about your particular environment.
975
976 Using this operator can lead to programs that are difficult to port,
977 because the shell commands called vary between systems, and may in
978 fact not be present at all.  As one example, the C<type> command under
979 the POSIX shell is very different from the C<type> command under DOS.
980 That doesn't mean you should go out of your way to avoid backticks
981 when they're the right way to get something done.  Perl was made to be
982 a glue language, and one of the things it glues together is commands.
983 Just understand what you're getting yourself into.
984
985 See L<"I/O Operators"> for more discussion.
986
987 =item qw/STRING/
988
989 Returns a list of the words extracted out of STRING, using embedded
990 whitespace as the word delimiters.  It is exactly equivalent to
991
992     split(' ', q/STRING/);
993
994 This equivalency means that if used in scalar context, you'll get split's
995 (unfortunate) scalar context behavior, complete with mysterious warnings.
996
997 Some frequently seen examples:
998
999     use POSIX qw( setlocale localeconv )
1000     @EXPORT = qw( foo bar baz );
1001
1002 A common mistake is to try to separate the words with comma or to put
1003 comments into a multi-line C<qw>-string.  For this reason the C<-w>
1004 switch produce warnings if the STRING contains the "," or the "#"
1005 character.
1006
1007 =item s/PATTERN/REPLACEMENT/egimosx
1008
1009 Searches a string for a pattern, and if found, replaces that pattern
1010 with the replacement text and returns the number of substitutions
1011 made.  Otherwise it returns false (specifically, the empty string).
1012
1013 If no string is specified via the C<=~> or C<!~> operator, the C<$_>
1014 variable is searched and modified.  (The string specified with C<=~> must
1015 be scalar variable, an array element, a hash element, or an assignment
1016 to one of those, i.e., an lvalue.)
1017
1018 If the delimiter chosen is single quote, no variable interpolation is
1019 done on either the PATTERN or the REPLACEMENT.  Otherwise, if the
1020 PATTERN contains a $ that looks like a variable rather than an
1021 end-of-string test, the variable will be interpolated into the pattern
1022 at run-time.  If you want the pattern compiled only once the first time
1023 the variable is interpolated, use the C</o> option.  If the pattern
1024 evaluates to the empty string, the last successfully executed regular
1025 expression is used instead.  See L<perlre> for further explanation on these.
1026 See L<perllocale> for discussion of additional considerations that apply
1027 when C<use locale> is in effect.
1028
1029 Options are:
1030
1031     e   Evaluate the right side as an expression.
1032     g   Replace globally, i.e., all occurrences.
1033     i   Do case-insensitive pattern matching.
1034     m   Treat string as multiple lines.
1035     o   Compile pattern only once.
1036     s   Treat string as single line.
1037     x   Use extended regular expressions.
1038
1039 Any non-alphanumeric, non-whitespace delimiter may replace the
1040 slashes.  If single quotes are used, no interpretation is done on the
1041 replacement string (the C</e> modifier overrides this, however).  Unlike
1042 Perl 4, Perl 5 treats backticks as normal delimiters; the replacement
1043 text is not evaluated as a command.  If the
1044 PATTERN is delimited by bracketing quotes, the REPLACEMENT has its own
1045 pair of quotes, which may or may not be bracketing quotes, e.g.,
1046 C<s(foo)(bar)> or C<sE<lt>fooE<gt>/bar/>.  A C</e> will cause the
1047 replacement portion to be interpreted as a full-fledged Perl expression
1048 and eval()ed right then and there.  It is, however, syntax checked at
1049 compile-time.
1050
1051 Examples:
1052
1053     s/\bgreen\b/mauve/g;                # don't change wintergreen
1054
1055     $path =~ s|/usr/bin|/usr/local/bin|;
1056
1057     s/Login: $foo/Login: $bar/; # run-time pattern
1058
1059     ($foo = $bar) =~ s/this/that/;      # copy first, then change
1060
1061     $count = ($paragraph =~ s/Mister\b/Mr./g);  # get change-count
1062
1063     $_ = 'abc123xyz';
1064     s/\d+/$&*2/e;               # yields 'abc246xyz'
1065     s/\d+/sprintf("%5d",$&)/e;  # yields 'abc  246xyz'
1066     s/\w/$& x 2/eg;             # yields 'aabbcc  224466xxyyzz'
1067
1068     s/%(.)/$percent{$1}/g;      # change percent escapes; no /e
1069     s/%(.)/$percent{$1} || $&/ge;       # expr now, so /e
1070     s/^=(\w+)/&pod($1)/ge;      # use function call
1071
1072     # expand variables in $_, but dynamics only, using
1073     # symbolic dereferencing
1074     s/\$(\w+)/${$1}/g;
1075
1076     # /e's can even nest;  this will expand
1077     # any embedded scalar variable (including lexicals) in $_
1078     s/(\$\w+)/$1/eeg;
1079
1080     # Delete (most) C comments.
1081     $program =~ s {
1082         /\*     # Match the opening delimiter.
1083         .*?     # Match a minimal number of characters.
1084         \*/     # Match the closing delimiter.
1085     } []gsx;
1086
1087     s/^\s*(.*?)\s*$/$1/;        # trim white space in $_, expensively
1088
1089     for ($variable) {           # trim white space in $variable, cheap
1090         s/^\s+//;
1091         s/\s+$//;
1092     }
1093
1094     s/([^ ]*) *([^ ]*)/$2 $1/;  # reverse 1st two fields
1095
1096 Note the use of $ instead of \ in the last example.  Unlike
1097 B<sed>, we use the \E<lt>I<digit>E<gt> form in only the left hand side.
1098 Anywhere else it's $E<lt>I<digit>E<gt>.
1099
1100 Occasionally, you can't use just a C</g> to get all the changes
1101 to occur.  Here are two common cases:
1102
1103     # put commas in the right places in an integer
1104     1 while s/(.*\d)(\d\d\d)/$1,$2/g;      # perl4
1105     1 while s/(\d)(\d\d\d)(?!\d)/$1,$2/g;  # perl5
1106
1107     # expand tabs to 8-column spacing
1108     1 while s/\t+/' ' x (length($&)*8 - length($`)%8)/e;
1109
1110
1111 =item tr/SEARCHLIST/REPLACEMENTLIST/cds
1112
1113 =item y/SEARCHLIST/REPLACEMENTLIST/cds
1114
1115 Transliterates all occurrences of the characters found in the search list
1116 with the corresponding character in the replacement list.  It returns
1117 the number of characters replaced or deleted.  If no string is
1118 specified via the =~ or !~ operator, the $_ string is transliterated.  (The
1119 string specified with =~ must be a scalar variable, an array element, a
1120 hash element, or an assignment to one of those, i.e., an lvalue.)
1121 A character range may be specified with a hyphen, so C<tr/A-J/0-9/> 
1122 does the same replacement as C<tr/ACEGIBDFHJ/0246813579/>.
1123 For B<sed> devotees, C<y> is provided as a synonym for C<tr>.  If the
1124 SEARCHLIST is delimited by bracketing quotes, the REPLACEMENTLIST has
1125 its own pair of quotes, which may or may not be bracketing quotes,
1126 e.g., C<tr[A-Z][a-z]> or C<tr(+\-*/)/ABCD/>.
1127
1128 Options:
1129
1130     c   Complement the SEARCHLIST.
1131     d   Delete found but unreplaced characters.
1132     s   Squash duplicate replaced characters.
1133
1134 If the C</c> modifier is specified, the SEARCHLIST character set is
1135 complemented.  If the C</d> modifier is specified, any characters specified
1136 by SEARCHLIST not found in REPLACEMENTLIST are deleted.  (Note
1137 that this is slightly more flexible than the behavior of some B<tr>
1138 programs, which delete anything they find in the SEARCHLIST, period.)
1139 If the C</s> modifier is specified, sequences of characters that were
1140 transliterated to the same character are squashed down to a single instance of the
1141 character.
1142
1143 If the C</d> modifier is used, the REPLACEMENTLIST is always interpreted
1144 exactly as specified.  Otherwise, if the REPLACEMENTLIST is shorter
1145 than the SEARCHLIST, the final character is replicated till it is long
1146 enough.  If the REPLACEMENTLIST is empty, the SEARCHLIST is replicated.
1147 This latter is useful for counting characters in a class or for
1148 squashing character sequences in a class.
1149
1150 Examples:
1151
1152     $ARGV[1] =~ tr/A-Z/a-z/;    # canonicalize to lower case
1153
1154     $cnt = tr/*/*/;             # count the stars in $_
1155
1156     $cnt = $sky =~ tr/*/*/;     # count the stars in $sky
1157
1158     $cnt = tr/0-9//;            # count the digits in $_
1159
1160     tr/a-zA-Z//s;               # bookkeeper -> bokeper
1161
1162     ($HOST = $host) =~ tr/a-z/A-Z/;
1163
1164     tr/a-zA-Z/ /cs;             # change non-alphas to single space
1165
1166     tr [\200-\377]
1167        [\000-\177];             # delete 8th bit
1168
1169 If multiple transliterations are given for a character, only the first one is used:
1170
1171     tr/AAA/XYZ/
1172
1173 will transliterate any A to X.
1174
1175 Note that because the transliteration table is built at compile time, neither
1176 the SEARCHLIST nor the REPLACEMENTLIST are subjected to double quote
1177 interpolation.  That means that if you want to use variables, you must use
1178 an eval():
1179
1180     eval "tr/$oldlist/$newlist/";
1181     die $@ if $@;
1182
1183     eval "tr/$oldlist/$newlist/, 1" or die $@;
1184
1185 =back
1186
1187 =head2 Gory details of parsing quoted constructs
1188
1189 When presented with something which may have several different 
1190 interpretations, Perl uses the principle B<DWIM> (expanded to Do What I Mean 
1191 - not what I wrote) to pick up the most probable interpretation of the 
1192 source.  This strategy is so successful that Perl users usually do not
1193 suspect ambivalence of what they write.  However, time to time Perl's ideas
1194 differ from what the author meant.  
1195
1196 The target of this section is to clarify the Perl's way of interpreting
1197 quoted constructs.  The most frequent reason one may have to want to know the 
1198 details discussed in this section is hairy regular expressions.  However, the 
1199 first steps of parsing are the same for all Perl quoting operators, so here
1200 they are discussed together.
1201
1202 Some of the passes discussed below are performed concurrently, but as 
1203 far as results are the same, we consider them one-by-one.  For different
1204 quoting constructs Perl performs different number of passes, from
1205 one to five, but they are always performed in the same order.
1206
1207 =over
1208
1209 =item Finding the end
1210
1211 First pass is finding the end of the quoted construct, be it multichar ender
1212 C<"\nEOF\n"> of C<<<EOF> construct, C</> which terminates C<qq/> construct,
1213 C<E<]>> which terminates C<qq[> construct, or C<E<gt>> which terminates a
1214 fileglob started with C<<>.
1215
1216 When searching for multichar construct no skipping is performed.  When 
1217 searching for one-char non-matching delimiter, such as C</>, combinations
1218 C<\\> and C<\/> are skipped.  When searching for one-char matching delimiter,
1219 such as C<]>, combinations C<\\>, C<\]> and C<\[> are skipped, and 
1220 nested C<[>, C<]> are skipped as well.
1221
1222 For 3-parts constructs C<s///> etc. the search is repeated once more.
1223
1224 During this search no attension is paid to the semantic of the construct, thus
1225
1226     "$hash{"$foo/$bar"}"
1227
1228 or
1229
1230     m/ 
1231       bar       #  This is not a comment, this slash / terminated m//!
1232      /x
1233
1234 do not form legal quoted expressions.  Note that since the slash which 
1235 terminated C<m//> was followed by a C<SPACE>, this is not C<m//x>, 
1236 thus C<#> was interpreted as a literal C<#>.
1237
1238 =item Removal of backslashes before delimiters
1239
1240 During the second pass the text between the starting delimiter and 
1241 the ending delimiter is copied to a safe location, and the C<\> is 
1242 removed from combinations consisting of C<\> and delimiter(s) (both starting
1243 and ending delimiter if they differ).
1244
1245 The removal does not happen for multi-char delimiters.
1246
1247 Note that the combination C<\\> is left as it was!
1248
1249 Starting from this step no information about the delimiter(s) is used in the
1250 parsing.
1251
1252 =item Interpolation
1253
1254 Next step is interpolation in the obtained delimiter-independent text.
1255 There are many different cases.
1256
1257 =over
1258
1259 =item C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>
1260
1261 No interpolation is performed.
1262
1263 =item C<''>, C<q//>
1264
1265 The only interpolation is removal of C<\> from pairs C<\\>.
1266
1267 =item C<"">, C<``>, C<qq//>, C<qx//>, C<<file*globE<gt>>
1268
1269 C<\Q>, C<\U>, C<\u>, C<\L>, C<\l> (possibly paired with C<\E>) are converted
1270 to corresponding Perl constructs, thus C<"$foo\Qbaz$bar"> is converted to 
1271
1272    $foo . (quotemeta("baz" . $bar));
1273
1274 Other combinations of C<\> with following chars are substituted with
1275 appropriate expansions.  
1276
1277 Interpolated scalars and arrays are converted to C<join> and C<.> Perl 
1278 constructs, thus C<"'@arr'"> becomes
1279
1280   "'" . (join $", @arr) . "'";
1281
1282 Since all three above steps are performed simultaneously left-to-right,
1283 the is no way to insert a literal C<$> or C<@> inside C<\Q\E> pair: it
1284 cannot be protected by C<\>, since any C<\> (except in C<\E>) is 
1285 interpreted as a literal inside C<\Q\E>, and any $ is 
1286 interpreted as starting an interpolated scalar.
1287
1288 Note also that the interpolating code needs to make decision where the 
1289 interpolated scalar ends, say, whether C<"a $b -> {c}"> means 
1290
1291   "a " . $b . " -> {c}";
1292
1293 or 
1294
1295   "a " . $b -> {c};
1296
1297 Most the time the decision is to take the longest possible text which does
1298 not include spaces between components and contains matching braces/brackets.
1299
1300 =item C<?RE?>, C</RE/>, C<m/RE/>, C<s/RE/foo/>, 
1301
1302 Processing of C<\Q>, C<\U>, C<\u>, C<\L>, C<\l> and interpolation happens 
1303 (almost) as with qq// constructs, but I<the substitution of C<\> followed by
1304 other chars is not performed>!  Moreover, inside C<(?{BLOCK})> no processing
1305 is performed at all.
1306
1307 Interpolation has several quirks: $|, $( and $) are not interpolated, and
1308 constructs C<$var[SOMETHING]> are I<voted> (by several different estimators) 
1309 to be an array element or $var followed by a RE alternative.  This is
1310 the place where the notation C<${arr[$bar]}> comes handy: C</${arr[0-9]}/>
1311 is interpreted as an array element -9, not as a regular expression from
1312 variable $arr followed by a digit, which is the interpretation of 
1313 C</$arr[0-9]/>.
1314
1315 Note that absense of processing of C<\\> creates specific restrictions on the
1316 post-processed text: if the delimeter is C</>, one cannot get the combination
1317 C<\/> into the result of this step: C</> will finish the regular expression,
1318 C<\/> will be stripped to C</> on the previous step, and C<\\/> will be left
1319 as is.  Since C</> is equivalent to C<\/> inside a regular expression, this
1320 does not matter unless the delimiter is special character for RE engine, as 
1321 in C<s*foo*bar*>, C<m[foo]>, or C<?foo?>.
1322
1323 =back
1324
1325 This step is the last one for all the constructs except regular expressions,
1326 which are processed further.
1327
1328 =item Interpolation of regular expressions
1329
1330 All the previous steps were performed during the compilation of Perl code,
1331 this one happens in run time (though it may be optimized to be calculated
1332 at compile time if appropriate).  After all the preprocessing performed 
1333 above (and possibly after evaluation if catenation, joining, up/down-casing 
1334 and quotemeta()ing are involved) the resulting I<string> is passed to RE
1335 engine for compilation.
1336
1337 Whatever happens in the RE engine is better be discussed in L<perlre>,
1338 but for the sake of continuity let us do it here.
1339
1340 This is the first step where presense of the C<//x> switch is relevant.
1341 RE engine scans the string left-to-right, and converts it to a finite 
1342 automaton.  
1343
1344 Backslashed chars are either substituted by corresponding literal 
1345 strings, or generate special nodes of the finite automaton.  Characters
1346 which are special to RE engine generate corresponding nodes.  C<(?#...)>
1347 comments are ignored.  All the rest is either converted to literal strings
1348 to match, or is ignored (as is whitespace and C<#>-style comments if
1349 C<//x> is present).
1350
1351 Note that the parsing of the construct C<[...]> is performed using 
1352 absolutely different rules than the rest of the regular expression.  
1353 Similarly, the C<(?{...})> is only checked for matching braces.
1354
1355 =item Optimization of regular expressions
1356
1357 This step is listed for compeleteness only.  Since it does not change
1358 semantics, details of this step are not documented and are subject
1359 to change.
1360
1361 =back
1362
1363 =head2 I/O Operators
1364
1365 There are several I/O operators you should know about.
1366 A string enclosed by backticks (grave accents) first undergoes
1367 variable substitution just like a double quoted string.  It is then
1368 interpreted as a command, and the output of that command is the value
1369 of the pseudo-literal, like in a shell.  In scalar context, a single
1370 string consisting of all the output is returned.  In list context,
1371 a list of values is returned, one for each line of output.  (You can
1372 set C<$/> to use a different line terminator.)  The command is executed
1373 each time the pseudo-literal is evaluated.  The status value of the
1374 command is returned in C<$?> (see L<perlvar> for the interpretation
1375 of C<$?>).  Unlike in B<csh>, no translation is done on the return
1376 data--newlines remain newlines.  Unlike in any of the shells, single
1377 quotes do not hide variable names in the command from interpretation.
1378 To pass a $ through to the shell you need to hide it with a backslash.
1379 The generalized form of backticks is C<qx//>.  (Because backticks
1380 always undergo shell expansion as well, see L<perlsec> for
1381 security concerns.)
1382
1383 Evaluating a filehandle in angle brackets yields the next line from
1384 that file (newline, if any, included), or C<undef> at end of file.
1385 Ordinarily you must assign that value to a variable, but there is one
1386 situation where an automatic assignment happens.  I<If and ONLY if> the
1387 input symbol is the only thing inside the conditional of a C<while> or
1388 C<for(;;)> loop, the value is automatically assigned to the variable
1389 C<$_>.  In these loop constructs, the assigned value (whether assignment
1390 is automatic or explicit) is then tested to see if it is defined.
1391 The defined test avoids problems where line has a string value
1392 that would be treated as false by perl e.g. "" or "0" with no trailing
1393 newline. (This may seem like an odd thing to you, but you'll use the 
1394 construct in almost every Perl script you write.) Anyway, the following 
1395 lines are equivalent to each other:
1396
1397     while (defined($_ = <STDIN>)) { print; }
1398     while ($_ = <STDIN>) { print; }
1399     while (<STDIN>) { print; }
1400     for (;<STDIN>;) { print; }
1401     print while defined($_ = <STDIN>);
1402     print while ($_ = <STDIN>);
1403     print while <STDIN>;
1404
1405 and this also behaves similarly, but avoids the use of $_ :
1406
1407     while (my $line = <STDIN>) { print $line }    
1408
1409 If you really mean such values to terminate the loop they should be 
1410 tested for explicitly:
1411
1412     while (($_ = <STDIN>) ne '0') { ... }
1413     while (<STDIN>) { last unless $_; ... }
1414
1415 In other boolean contexts, C<E<lt>I<filehandle>E<gt>> without explicit C<defined>
1416 test or comparison will solicit a warning if C<-w> is in effect.
1417
1418 The filehandles STDIN, STDOUT, and STDERR are predefined.  (The
1419 filehandles C<stdin>, C<stdout>, and C<stderr> will also work except in
1420 packages, where they would be interpreted as local identifiers rather
1421 than global.)  Additional filehandles may be created with the open()
1422 function.  See L<perlfunc/open()> for details on this.
1423
1424 If a E<lt>FILEHANDLEE<gt> is used in a context that is looking for a list, a
1425 list consisting of all the input lines is returned, one line per list
1426 element.  It's easy to make a I<LARGE> data space this way, so use with
1427 care.
1428
1429 The null filehandle E<lt>E<gt> is special and can be used to emulate the
1430 behavior of B<sed> and B<awk>.  Input from E<lt>E<gt> comes either from
1431 standard input, or from each file listed on the command line.  Here's
1432 how it works: the first time E<lt>E<gt> is evaluated, the @ARGV array is
1433 checked, and if it is empty, C<$ARGV[0]> is set to "-", which when opened
1434 gives you standard input.  The @ARGV array is then processed as a list
1435 of filenames.  The loop
1436
1437     while (<>) {
1438         ...                     # code for each line
1439     }
1440
1441 is equivalent to the following Perl-like pseudo code:
1442
1443     unshift(@ARGV, '-') unless @ARGV;
1444     while ($ARGV = shift) {
1445         open(ARGV, $ARGV);
1446         while (<ARGV>) {
1447             ...         # code for each line
1448         }
1449     }
1450
1451 except that it isn't so cumbersome to say, and will actually work.  It
1452 really does shift array @ARGV and put the current filename into variable
1453 $ARGV.  It also uses filehandle I<ARGV> internally--E<lt>E<gt> is just a
1454 synonym for E<lt>ARGVE<gt>, which is magical.  (The pseudo code above
1455 doesn't work because it treats E<lt>ARGVE<gt> as non-magical.)
1456
1457 You can modify @ARGV before the first E<lt>E<gt> as long as the array ends up
1458 containing the list of filenames you really want.  Line numbers (C<$.>)
1459 continue as if the input were one big happy file.  (But see example
1460 under C<eof> for how to reset line numbers on each file.)
1461
1462 If you want to set @ARGV to your own list of files, go right ahead.  
1463 This sets @ARGV to all plain text files if no @ARGV was given:
1464
1465     @ARGV = grep { -f && -T } glob('*') unless @ARGV;
1466
1467 You can even set them to pipe commands.  For example, this automatically
1468 filters compressed arguments through B<gzip>:
1469
1470     @ARGV = map { /\.(gz|Z)$/ ? "gzip -dc < $_ |" : $_ } @ARGV;
1471
1472 If you want to pass switches into your script, you can use one of the
1473 Getopts modules or put a loop on the front like this:
1474
1475     while ($_ = $ARGV[0], /^-/) {
1476         shift;
1477         last if /^--$/;
1478         if (/^-D(.*)/) { $debug = $1 }
1479         if (/^-v/)     { $verbose++  }
1480         # ...           # other switches
1481     }
1482
1483     while (<>) {
1484         # ...           # code for each line
1485     }
1486
1487 The E<lt>E<gt> symbol will return C<undef> for end-of-file only once.  
1488 If you call it again after this it will assume you are processing another 
1489 @ARGV list, and if you haven't set @ARGV, will input from STDIN.
1490
1491 If the string inside the angle brackets is a reference to a scalar
1492 variable (e.g., E<lt>$fooE<gt>), then that variable contains the name of the
1493 filehandle to input from, or its typeglob, or a reference to the same.  For example:
1494
1495     $fh = \*STDIN;
1496     $line = <$fh>;
1497
1498 If what's within the angle brackets is neither a filehandle nor a simple
1499 scalar variable containing a filehandle name, typeglob, or typeglob
1500 reference, it is interpreted as a filename pattern to be globbed, and
1501 either a list of filenames or the next filename in the list is returned,
1502 depending on context.   This distinction is determined on syntactic
1503 grounds alone.  That means C<E<lt>$xE<gt>> is always a readline from
1504 an indirect handle, but C<E<lt>$hash{key}E<gt>> is always a glob.
1505 That's because $x is a simple scalar variable, but C<$hash{key}> is
1506 not--it's a hash element.
1507
1508 One level of double-quote interpretation is done first, but you can't
1509 say C<E<lt>$fooE<gt>> because that's an indirect filehandle as explained
1510 in the previous paragraph.  (In older versions of Perl, programmers
1511 would insert curly brackets to force interpretation as a filename glob:
1512 C<E<lt>${foo}E<gt>>.  These days, it's considered cleaner to call the
1513 internal function directly as C<glob($foo)>, which is probably the right
1514 way to have done it in the first place.)  Example:
1515
1516     while (<*.c>) {
1517         chmod 0644, $_;
1518     }
1519
1520 is equivalent to
1521
1522     open(FOO, "echo *.c | tr -s ' \t\r\f' '\\012\\012\\012\\012'|");
1523     while (<FOO>) {
1524         chop;
1525         chmod 0644, $_;
1526     }
1527
1528 In fact, it's currently implemented that way.  (Which means it will not
1529 work on filenames with spaces in them unless you have csh(1) on your
1530 machine.)  Of course, the shortest way to do the above is:
1531
1532     chmod 0644, <*.c>;
1533
1534 Because globbing invokes a shell, it's often faster to call readdir() yourself
1535 and do your own grep() on the filenames.  Furthermore, due to its current
1536 implementation of using a shell, the glob() routine may get "Arg list too
1537 long" errors (unless you've installed tcsh(1L) as F</bin/csh>).
1538
1539 A glob evaluates its (embedded) argument only when it is starting a new
1540 list.  All values must be read before it will start over.  In a list
1541 context this isn't important, because you automatically get them all
1542 anyway.  In scalar context, however, the operator returns the next value
1543 each time it is called, or a C<undef> value if you've just run out. As
1544 for filehandles an automatic C<defined> is generated when the glob
1545 occurs in the test part of a C<while> or C<for> - because legal glob returns
1546 (e.g. a file called F<0>) would otherwise terminate the loop.
1547 Again, C<undef> is returned only once.  So if you're expecting a single value 
1548 from a glob, it is much better to say
1549
1550     ($file) = <blurch*>;
1551
1552 than
1553
1554     $file = <blurch*>;
1555
1556 because the latter will alternate between returning a filename and
1557 returning FALSE.
1558
1559 It you're trying to do variable interpolation, it's definitely better
1560 to use the glob() function, because the older notation can cause people
1561 to become confused with the indirect filehandle notation.
1562
1563     @files = glob("$dir/*.[ch]");
1564     @files = glob($files[$i]);
1565
1566 =head2 Constant Folding
1567
1568 Like C, Perl does a certain amount of expression evaluation at
1569 compile time, whenever it determines that all arguments to an
1570 operator are static and have no side effects.  In particular, string
1571 concatenation happens at compile time between literals that don't do
1572 variable substitution.  Backslash interpretation also happens at
1573 compile time.  You can say
1574
1575     'Now is the time for all' . "\n" .
1576         'good men to come to.'
1577
1578 and this all reduces to one string internally.  Likewise, if
1579 you say
1580
1581     foreach $file (@filenames) {
1582         if (-s $file > 5 + 100 * 2**16) {  }
1583     }
1584
1585 the compiler will precompute the number that
1586 expression represents so that the interpreter
1587 won't have to.
1588
1589 =head2 Bitwise String Operators
1590
1591 Bitstrings of any size may be manipulated by the bitwise operators
1592 (C<~ | & ^>).
1593
1594 If the operands to a binary bitwise op are strings of different sizes,
1595 B<or> and B<xor> ops will act as if the shorter operand had additional
1596 zero bits on the right, while the B<and> op will act as if the longer
1597 operand were truncated to the length of the shorter.
1598
1599     # ASCII-based examples 
1600     print "j p \n" ^ " a h";            # prints "JAPH\n"
1601     print "JA" | "  ph\n";              # prints "japh\n"
1602     print "japh\nJunk" & '_____';       # prints "JAPH\n";
1603     print 'p N$' ^ " E<H\n";            # prints "Perl\n";
1604
1605 If you are intending to manipulate bitstrings, you should be certain that
1606 you're supplying bitstrings: If an operand is a number, that will imply
1607 a B<numeric> bitwise operation. You may explicitly show which type of
1608 operation you intend by using C<""> or C<0+>, as in the examples below.
1609
1610     $foo =  150  |  105 ;       # yields 255  (0x96 | 0x69 is 0xFF)
1611     $foo = '150' |  105 ;       # yields 255
1612     $foo =  150  | '105';       # yields 255
1613     $foo = '150' | '105';       # yields string '155' (under ASCII)
1614
1615     $baz = 0+$foo & 0+$bar;     # both ops explicitly numeric
1616     $biz = "$foo" ^ "$bar";     # both ops explicitly stringy
1617
1618 =head2 Integer Arithmetic
1619
1620 By default Perl assumes that it must do most of its arithmetic in
1621 floating point.  But by saying
1622
1623     use integer;
1624
1625 you may tell the compiler that it's okay to use integer operations
1626 from here to the end of the enclosing BLOCK.  An inner BLOCK may
1627 countermand this by saying
1628
1629     no integer;
1630
1631 which lasts until the end of that BLOCK.
1632
1633 The bitwise operators ("&", "|", "^", "~", "<<", and ">>") always
1634 produce integral results.  (But see also L<Bitwise String Operators>.)
1635 However, C<use integer> still has meaning
1636 for them.  By default, their results are interpreted as unsigned
1637 integers.  However, if C<use integer> is in effect, their results are
1638 interpreted as signed integers.  For example, C<~0> usually evaluates
1639 to a large integral value.  However, C<use integer; ~0> is -1 on twos-complement machines.
1640
1641 =head2 Floating-point Arithmetic
1642
1643 While C<use integer> provides integer-only arithmetic, there is no
1644 similar ways to provide rounding or truncation at a certain number of
1645 decimal places.  For rounding to a certain number of digits, sprintf()
1646 or printf() is usually the easiest route.
1647
1648 Floating-point numbers are only approximations to what a mathematician
1649 would call real numbers.  There are infinitely more reals than floats,
1650 so some corners must be cut.  For example:
1651
1652     printf "%.20g\n", 123456789123456789;
1653     #        produces 123456789123456784
1654
1655 Testing for exact equality of floating-point equality or inequality is
1656 not a good idea.  Here's a (relatively expensive) work-around to compare
1657 whether two floating-point numbers are equal to a particular number of
1658 decimal places.  See Knuth, volume II, for a more robust treatment of
1659 this topic.
1660
1661     sub fp_equal {
1662         my ($X, $Y, $POINTS) = @_;
1663         my ($tX, $tY);
1664         $tX = sprintf("%.${POINTS}g", $X);
1665         $tY = sprintf("%.${POINTS}g", $Y);
1666         return $tX eq $tY;
1667     }
1668
1669 The POSIX module (part of the standard perl distribution) implements
1670 ceil(), floor(), and a number of other mathematical and trigonometric
1671 functions.  The Math::Complex module (part of the standard perl
1672 distribution) defines a number of mathematical functions that can also
1673 work on real numbers.  Math::Complex not as efficient as POSIX, but
1674 POSIX can't work with complex numbers.
1675
1676 Rounding in financial applications can have serious implications, and
1677 the rounding method used should be specified precisely.  In these
1678 cases, it probably pays not to trust whichever system rounding is
1679 being used by Perl, but to instead implement the rounding function you
1680 need yourself.
1681
1682 =head2 Bigger Numbers
1683
1684 The standard Math::BigInt and Math::BigFloat modules provide
1685 variable precision arithmetic and overloaded operators.
1686 At the cost of some space and considerable speed, they
1687 avoid the normal pitfalls associated with limited-precision
1688 representations.
1689
1690     use Math::BigInt;
1691     $x = Math::BigInt->new('123456789123456789');
1692     print $x * $x;
1693
1694     # prints +15241578780673678515622620750190521