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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlsyn - Perl syntax</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlsyn - Perl syntax</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <UL>
  23.  
  24.         <LI><A HREF="#declarations">Declarations</A></LI>
  25.         <LI><A HREF="#simple statements">Simple statements</A></LI>
  26.         <LI><A HREF="#compound statements">Compound statements</A></LI>
  27.         <LI><A HREF="#loop control">Loop Control</A></LI>
  28.         <LI><A HREF="#for loops">For Loops</A></LI>
  29.         <LI><A HREF="#foreach loops">Foreach Loops</A></LI>
  30.         <LI><A HREF="#basic blocks and switch statements">Basic BLOCKs and Switch Statements</A></LI>
  31.         <LI><A HREF="#goto">Goto</A></LI>
  32.         <LI><A HREF="#pods: embedded documentation">PODs: Embedded Documentation</A></LI>
  33.         <LI><A HREF="#plain old comments (not!)">Plain Old Comments (Not!)</A></LI>
  34.     </UL>
  35.  
  36. </UL>
  37. <!-- INDEX END -->
  38.  
  39. <HR>
  40. <P>
  41. <H1><A NAME="name">NAME</A></H1>
  42. <P>perlsyn - Perl syntax</P>
  43. <P>
  44. <HR>
  45. <H1><A NAME="description">DESCRIPTION</A></H1>
  46. <P>A Perl script consists of a sequence of declarations and statements.
  47. The sequence of statements is executed just once, unlike in <STRONG>sed</STRONG>
  48. and <STRONG>awk</STRONG> scripts, where the sequence of statements is executed
  49. for each input line.  While this means that you must explicitly
  50. loop over the lines of your input file (or files), it also means
  51. you have much more control over which files and which lines you look at.
  52. (Actually, I'm lying--it is possible to do an implicit loop with
  53. either the <STRONG>-n</STRONG> or <STRONG>-p</STRONG> switch.  It's just not the mandatory
  54. default like it is in <STRONG>sed</STRONG> and <STRONG>awk</STRONG>.)</P>
  55. <P>Perl is, for the most part, a free-form language.  (The only exception
  56. to this is format declarations, for obvious reasons.)  Text from a
  57. <CODE>"#"</CODE> character until the end of the line is a comment, and is
  58. ignored.  If you attempt to use <CODE>/* */</CODE> C-style comments, it will be
  59. interpreted either as division or pattern matching, depending on the
  60. context, and C++ <CODE>//</CODE> comments just look like a null regular
  61. expression, so don't do that.</P>
  62. <P>
  63. <H2><A NAME="declarations">Declarations</A></H2>
  64. <P>The only things you need to declare in Perl are report formats
  65. and subroutines--and even undefined subroutines can be handled
  66. through AUTOLOAD.  A variable holds the undefined value (<A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>)
  67. until it has been assigned a defined value, which is anything
  68. other than <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>.  When used as a number, <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> is treated
  69. as <CODE>0</CODE>; when used as a string, it is treated the empty string,
  70. <CODE>""</CODE>; and when used as a reference that isn't being assigned
  71. to, it is treated as an error.  If you enable warnings, you'll
  72. be notified of an uninitialized value whenever you treat <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>
  73. as a string or a number.  Well, usually.  Boolean (``don't-care'')
  74. contexts and operators such as <CODE>++</CODE>, <CODE>--</CODE>, <CODE>+=</CODE>, <CODE>-=</CODE>, and
  75. <CODE>.=</CODE> are always exempt from such warnings.</P>
  76. <P>A declaration can be put anywhere a statement can, but has no effect on
  77. the execution of the primary sequence of statements--declarations all
  78. take effect at compile time.  Typically all the declarations are put at
  79. the beginning or the end of the script.  However, if you're using
  80. lexically-scoped private variables created with <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A>, you'll
  81. have to make sure
  82. your format or subroutine definition is within the same block scope
  83. as the my if you expect to be able to access those private variables.</P>
  84. <P>Declaring a subroutine allows a subroutine name to be used as if it were a
  85. list operator from that point forward in the program.  You can declare a
  86. subroutine without defining it by saying <CODE>sub name</CODE>, thus:</P>
  87. <PRE>
  88.     sub myname;
  89.     $me = myname $0             or die "can't get myname";</PRE>
  90. <P>Note that <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> functions as a list operator, not as a unary operator; so
  91. be careful to use <CODE>or</CODE> instead of <CODE>||</CODE> in this case.  However, if
  92. you were to declare the subroutine as <CODE>sub myname ($)</CODE>, then
  93. <CODE>myname</CODE> would function as a unary operator, so either <CODE>or</CODE> or
  94. <CODE>||</CODE> would work.</P>
  95. <P>Subroutines declarations can also be loaded up with the <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> statement
  96. or both loaded and imported into your namespace with a <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> statement.
  97. See <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A> for details on this.</P>
  98. <P>A statement sequence may contain declarations of lexically-scoped
  99. variables, but apart from declaring a variable name, the declaration acts
  100. like an ordinary statement, and is elaborated within the sequence of
  101. statements as if it were an ordinary statement.  That means it actually
  102. has both compile-time and run-time effects.</P>
  103. <P>
  104. <H2><A NAME="simple statements">Simple statements</A></H2>
  105. <P>The only kind of simple statement is an expression evaluated for its
  106. side effects.  Every simple statement must be terminated with a
  107. semicolon, unless it is the final statement in a block, in which case
  108. the semicolon is optional.  (A semicolon is still encouraged there if the
  109. block takes up more than one line, because you may eventually add another line.)
  110. Note that there are some operators like <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval {}</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do {}</CODE></A> that look
  111. like compound statements, but aren't (they're just TERMs in an expression),
  112. and thus need an explicit termination if used as the last item in a statement.</P>
  113. <P>Any simple statement may optionally be followed by a <EM>SINGLE</EM> modifier,
  114. just before the terminating semicolon (or block ending).  The possible
  115. modifiers are:</P>
  116. <PRE>
  117.     if EXPR
  118.     unless EXPR
  119.     while EXPR
  120.     until EXPR
  121.     foreach EXPR</PRE>
  122. <P>The <CODE>if</CODE> and <CODE>unless</CODE> modifiers have the expected semantics,
  123. presuming you're a speaker of English.  The <CODE>foreach</CODE> modifier is an
  124. iterator:  For each value in EXPR, it aliases <CODE>$_</CODE> to the value and
  125. executes the statement.  The <CODE>while</CODE> and <CODE>until</CODE> modifiers have the
  126. usual ``<CODE>while</CODE> loop'' semantics (conditional evaluated first), except
  127. when applied to a <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>-BLOCK (or to the deprecated <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>-SUBROUTINE
  128. statement), in which case the block executes once before the
  129. conditional is evaluated.  This is so that you can write loops like:</P>
  130. <PRE>
  131.     do {
  132.         $line = <STDIN>;
  133.         ...
  134.     } until $line  eq ".\n";</PRE>
  135. <P>See <A HREF="../../lib/Pod/perlfunc.html#do">do in the perlfunc manpage</A>.  Note also that the loop control statements described
  136. later will <EM>NOT</EM> work in this construct, because modifiers don't take
  137. loop labels.  Sorry.  You can always put another block inside of it
  138. (for <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A>) or around it (for <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A>) to do that sort of thing.
  139. For <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A>, just double the braces:</P>
  140. <PRE>
  141.     do {{
  142.         next if $x == $y;
  143.         # do something here
  144.     }} until $x++ > $z;</PRE>
  145. <P>For <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A>, you have to be more elaborate:</P>
  146. <PRE>
  147.     LOOP: { 
  148.             do {
  149.                 last if $x = $y**2;
  150.                 # do something here
  151.             } while $x++ <= $z;
  152.     }</PRE>
  153. <P>
  154. <H2><A NAME="compound statements">Compound statements</A></H2>
  155. <P>In Perl, a sequence of statements that defines a scope is called a block.
  156. Sometimes a block is delimited by the file containing it (in the case
  157. of a required file, or the program as a whole), and sometimes a block
  158. is delimited by the extent of a string (in the case of an eval).</P>
  159. <P>But generally, a block is delimited by curly brackets, also known as braces.
  160. We will call this syntactic construct a BLOCK.</P>
  161. <P>The following compound statements may be used to control flow:</P>
  162. <PRE>
  163.     if (EXPR) BLOCK
  164.     if (EXPR) BLOCK else BLOCK
  165.     if (EXPR) BLOCK elsif (EXPR) BLOCK ... else BLOCK
  166.     LABEL while (EXPR) BLOCK
  167.     LABEL while (EXPR) BLOCK continue BLOCK
  168.     LABEL for (EXPR; EXPR; EXPR) BLOCK
  169.     LABEL foreach VAR (LIST) BLOCK
  170.     LABEL foreach VAR (LIST) BLOCK continue BLOCK
  171.     LABEL BLOCK continue BLOCK</PRE>
  172. <P>Note that, unlike C and Pascal, these are defined in terms of BLOCKs,
  173. not statements.  This means that the curly brackets are <EM>required</EM>--no
  174. dangling statements allowed.  If you want to write conditionals without
  175. curly brackets there are several other ways to do it.  The following
  176. all do the same thing:</P>
  177. <PRE>
  178.     if (!open(FOO)) { die "Can't open $FOO: $!"; }
  179.     die "Can't open $FOO: $!" unless open(FOO);
  180.     open(FOO) or die "Can't open $FOO: $!";     # FOO or bust!
  181.     open(FOO) ? 'hi mom' : die "Can't open $FOO: $!";
  182.                         # a bit exotic, that last one</PRE>
  183. <P>The <CODE>if</CODE> statement is straightforward.  Because BLOCKs are always
  184. bounded by curly brackets, there is never any ambiguity about which
  185. <CODE>if</CODE> an <CODE>else</CODE> goes with.  If you use <CODE>unless</CODE> in place of <CODE>if</CODE>,
  186. the sense of the test is reversed.</P>
  187. <P>The <CODE>while</CODE> statement executes the block as long as the expression is
  188. true (does not evaluate to the null string <CODE>""</CODE> or <CODE>0</CODE> or <CODE>"0"</CODE>).
  189. The LABEL is optional, and if present, consists of an identifier followed
  190. by a colon.  The LABEL identifies the loop for the loop control
  191. statements <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A>, and <A HREF="../../lib/Pod/perlfunc.html#item_redo"><CODE>redo</CODE></A>.
  192. If the LABEL is omitted, the loop control statement
  193. refers to the innermost enclosing loop.  This may include dynamically
  194. looking back your call-stack at run time to find the LABEL.  Such
  195. desperate behavior triggers a warning if you use the <CODE>use warnings</CODE>
  196. praga or the <STRONG>-w</STRONG> flag.
  197. Unlike a <CODE>foreach</CODE> statement, a <CODE>while</CODE> statement never implicitly
  198. localises any variables.</P>
  199. <P>If there is a <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> BLOCK, it is always executed just before the
  200. conditional is about to be evaluated again, just like the third part of a
  201. <CODE>for</CODE> loop in C.  Thus it can be used to increment a loop variable, even
  202. when the loop has been continued via the <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A> statement (which is
  203. similar to the C <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> statement).</P>
  204. <P>
  205. <H2><A NAME="loop control">Loop Control</A></H2>
  206. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A> command is like the <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> statement in C; it starts
  207. the next iteration of the loop:</P>
  208. <PRE>
  209.     LINE: while (<STDIN>) {
  210.         next LINE if /^#/;      # discard comments
  211.         ...
  212.     }</PRE>
  213. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A> command is like the <CODE>break</CODE> statement in C (as used in
  214. loops); it immediately exits the loop in question.  The
  215. <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> block, if any, is not executed:</P>
  216. <PRE>
  217.     LINE: while (<STDIN>) {
  218.         last LINE if /^$/;      # exit when done with header
  219.         ...
  220.     }</PRE>
  221. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_redo"><CODE>redo</CODE></A> command restarts the loop block without evaluating the
  222. conditional again.  The <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> block, if any, is <EM>not</EM> executed.
  223. This command is normally used by programs that want to lie to themselves
  224. about what was just input.</P>
  225. <P>For example, when processing a file like <EM>/etc/termcap</EM>.
  226. If your input lines might end in backslashes to indicate continuation, you
  227. want to skip ahead and get the next record.</P>
  228. <PRE>
  229.     while (<>) {
  230.         chomp;
  231.         if (s/\\$//) {
  232.             $_ .= <>;
  233.             redo unless eof();
  234.         }
  235.         # now process $_
  236.     }</PRE>
  237. <P>which is Perl short-hand for the more explicitly written version:</P>
  238. <PRE>
  239.     LINE: while (defined($line = <ARGV>)) {
  240.         chomp($line);
  241.         if ($line =~ s/\\$//) {
  242.             $line .= <ARGV>;
  243.             redo LINE unless eof(); # not eof(ARGV)!
  244.         }
  245.         # now process $line
  246.     }</PRE>
  247. <P>Note that if there were a <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> block on the above code, it would get
  248. executed even on discarded lines.  This is often used to reset line counters 
  249. or <CODE>?pat?</CODE> one-time matches.</P>
  250. <PRE>
  251.     # inspired by :1,$g/fred/s//WILMA/
  252.     while (<>) {
  253.         ?(fred)?    && s//WILMA $1 WILMA/;
  254.         ?(barney)?  && s//BETTY $1 BETTY/;
  255.         ?(homer)?   && s//MARGE $1 MARGE/;
  256.     } continue {
  257.         print "$ARGV $.: $_";
  258.         close ARGV  if eof();           # reset $.
  259.         reset       if eof();           # reset ?pat?
  260.     }</PRE>
  261. <P>If the word <CODE>while</CODE> is replaced by the word <CODE>until</CODE>, the sense of the
  262. test is reversed, but the conditional is still tested before the first
  263. iteration.</P>
  264. <P>The loop control statements don't work in an <CODE>if</CODE> or <CODE>unless</CODE>, since
  265. they aren't loops.  You can double the braces to make them such, though.</P>
  266. <PRE>
  267.     if (/pattern/) {{
  268.         next if /fred/;
  269.         next if /barney/;
  270.         # so something here
  271.     }}</PRE>
  272. <P>The form <CODE>while/if BLOCK BLOCK</CODE>, available in Perl 4, is no longer
  273. available.   Replace any occurrence of <CODE>if BLOCK</CODE> by <CODE>if (do BLOCK)</CODE>.</P>
  274. <P>
  275. <H2><A NAME="for loops">For Loops</A></H2>
  276. <P>Perl's C-style <CODE>for</CODE> loop works exactly like the corresponding <CODE>while</CODE> loop;
  277. that means that this:</P>
  278. <PRE>
  279.     for ($i = 1; $i < 10; $i++) {
  280.         ...
  281.     }</PRE>
  282. <P>is the same as this:</P>
  283. <PRE>
  284.     $i = 1;
  285.     while ($i < 10) {
  286.         ...
  287.     } continue {
  288.         $i++;
  289.     }</PRE>
  290. <P>(There is one minor difference: The first form implies a lexical scope
  291. for variables declared with <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> in the initialization expression.)</P>
  292. <P>Besides the normal array index looping, <CODE>for</CODE> can lend itself
  293. to many other interesting applications.  Here's one that avoids the
  294. problem you get into if you explicitly test for end-of-file on
  295. an interactive file descriptor causing your program to appear to
  296. hang.</P>
  297. <PRE>
  298.     $on_a_tty = -t STDIN && -t STDOUT;
  299.     sub prompt { print "yes? " if $on_a_tty }
  300.     for ( prompt(); <STDIN>; prompt() ) {
  301.         # do something
  302.     }</PRE>
  303. <P>
  304. <H2><A NAME="foreach loops">Foreach Loops</A></H2>
  305. <P>The <CODE>foreach</CODE> loop iterates over a normal list value and sets the
  306. variable VAR to be each element of the list in turn.  If the variable
  307. is preceded with the keyword <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>, then it is lexically scoped, and
  308. is therefore visible only within the loop.  Otherwise, the variable is
  309. implicitly local to the loop and regains its former value upon exiting
  310. the loop.  If the variable was previously declared with <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>, it uses
  311. that variable instead of the global one, but it's still localized to
  312. the loop.</P>
  313. <P>The <CODE>foreach</CODE> keyword is actually a synonym for the <CODE>for</CODE> keyword, so
  314. you can use <CODE>foreach</CODE> for readability or <CODE>for</CODE> for brevity.  (Or because
  315. the Bourne shell is more familiar to you than <EM>csh</EM>, so writing <CODE>for</CODE>
  316. comes more naturally.)  If VAR is omitted, <CODE>$_</CODE> is set to each value.
  317. If any element of LIST is an lvalue, you can modify it by modifying VAR
  318. inside the loop.  That's because the <CODE>foreach</CODE> loop index variable is
  319. an implicit alias for each item in the list that you're looping over.</P>
  320. <P>If any part of LIST is an array, <CODE>foreach</CODE> will get very confused if
  321. you add or remove elements within the loop body, for example with
  322. <A HREF="../../lib/Pod/perlfunc.html#item_splice"><CODE>splice</CODE></A>.   So don't do that.</P>
  323. <P><CODE>foreach</CODE> probably won't do what you expect if VAR is a tied or other
  324. special variable.   Don't do that either.</P>
  325. <P>Examples:</P>
  326. <PRE>
  327.     for (@ary) { s/foo/bar/ }</PRE>
  328. <PRE>
  329.     for my $elem (@elements) {
  330.         $elem *= 2;
  331.     }</PRE>
  332. <PRE>
  333.     for $count (10,9,8,7,6,5,4,3,2,1,'BOOM') {
  334.         print $count, "\n"; sleep(1);
  335.     }</PRE>
  336. <PRE>
  337.     for (1..15) { print "Merry Christmas\n"; }</PRE>
  338. <PRE>
  339.     foreach $item (split(/:[\\\n:]*/, $ENV{TERMCAP})) {
  340.         print "Item: $item\n";
  341.     }</PRE>
  342. <P>Here's how a C programmer might code up a particular algorithm in Perl:</P>
  343. <PRE>
  344.     for (my $i = 0; $i < @ary1; $i++) {
  345.         for (my $j = 0; $j < @ary2; $j++) {
  346.             if ($ary1[$i] > $ary2[$j]) {
  347.                 last; # can't go to outer :-(
  348.             }
  349.             $ary1[$i] += $ary2[$j];
  350.         }
  351.         # this is where that last takes me
  352.     }</PRE>
  353. <P>Whereas here's how a Perl programmer more comfortable with the idiom might
  354. do it:</P>
  355. <PRE>
  356.     OUTER: for my $wid (@ary1) {
  357.     INNER:   for my $jet (@ary2) {
  358.                 next OUTER if $wid > $jet;
  359.                 $wid += $jet;
  360.              }
  361.           }</PRE>
  362. <P>See how much easier this is?  It's cleaner, safer, and faster.  It's
  363. cleaner because it's less noisy.  It's safer because if code gets added
  364. between the inner and outer loops later on, the new code won't be
  365. accidentally executed.  The <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A> explicitly iterates the other loop
  366. rather than merely terminating the inner one.  And it's faster because
  367. Perl executes a <CODE>foreach</CODE> statement more rapidly than it would the
  368. equivalent <CODE>for</CODE> loop.</P>
  369. <P>
  370. <H2><A NAME="basic blocks and switch statements">Basic BLOCKs and Switch Statements</A></H2>
  371. <P>A BLOCK by itself (labeled or not) is semantically equivalent to a
  372. loop that executes once.  Thus you can use any of the loop control
  373. statements in it to leave or restart the block.  (Note that this is
  374. <EM>NOT</EM> true in <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval{}</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub{}</CODE></A>, or contrary to popular belief
  375. <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do{}</CODE></A> blocks, which do <EM>NOT</EM> count as loops.)  The <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A>
  376. block is optional.</P>
  377. <P>The BLOCK construct is particularly nice for doing case
  378. structures.</P>
  379. <PRE>
  380.     SWITCH: {
  381.         if (/^abc/) { $abc = 1; last SWITCH; }
  382.         if (/^def/) { $def = 1; last SWITCH; }
  383.         if (/^xyz/) { $xyz = 1; last SWITCH; }
  384.         $nothing = 1;
  385.     }</PRE>
  386. <P>There is no official <CODE>switch</CODE> statement in Perl, because there are
  387. already several ways to write the equivalent.  In addition to the
  388. above, you could write</P>
  389. <PRE>
  390.     SWITCH: {
  391.         $abc = 1, last SWITCH  if /^abc/;
  392.         $def = 1, last SWITCH  if /^def/;
  393.         $xyz = 1, last SWITCH  if /^xyz/;
  394.         $nothing = 1;
  395.     }</PRE>
  396. <P>(That's actually not as strange as it looks once you realize that you can
  397. use loop control ``operators'' within an expression,  That's just the normal
  398. C comma operator.)</P>
  399. <P>or</P>
  400. <PRE>
  401.     SWITCH: {
  402.         /^abc/ && do { $abc = 1; last SWITCH; };
  403.         /^def/ && do { $def = 1; last SWITCH; };
  404.         /^xyz/ && do { $xyz = 1; last SWITCH; };
  405.         $nothing = 1;
  406.     }</PRE>
  407. <P>or formatted so it stands out more as a ``proper'' <CODE>switch</CODE> statement:</P>
  408. <PRE>
  409.     SWITCH: {
  410.         /^abc/      && do {
  411.                             $abc = 1;
  412.                             last SWITCH;
  413.                        };</PRE>
  414. <PRE>
  415.         /^def/      && do {
  416.                             $def = 1;
  417.                             last SWITCH;
  418.                        };</PRE>
  419. <PRE>
  420.         /^xyz/      && do {
  421.                             $xyz = 1;
  422.                             last SWITCH;
  423.                         };
  424.         $nothing = 1;
  425.     }</PRE>
  426. <P>or</P>
  427. <PRE>
  428.     SWITCH: {
  429.         /^abc/ and $abc = 1, last SWITCH;
  430.         /^def/ and $def = 1, last SWITCH;
  431.         /^xyz/ and $xyz = 1, last SWITCH;
  432.         $nothing = 1;
  433.     }</PRE>
  434. <P>or even, horrors,</P>
  435. <PRE>
  436.     if (/^abc/)
  437.         { $abc = 1 }
  438.     elsif (/^def/)
  439.         { $def = 1 }
  440.     elsif (/^xyz/)
  441.         { $xyz = 1 }
  442.     else
  443.         { $nothing = 1 }</PRE>
  444. <P>A common idiom for a <CODE>switch</CODE> statement is to use <CODE>foreach</CODE>'s aliasing to make
  445. a temporary assignment to <CODE>$_</CODE> for convenient matching:</P>
  446. <PRE>
  447.     SWITCH: for ($where) {
  448.                 /In Card Names/     && do { push @flags, '-e'; last; };
  449.                 /Anywhere/          && do { push @flags, '-h'; last; };
  450.                 /In Rulings/        && do {                    last; };
  451.                 die "unknown value for form variable where: `$where'";
  452.             }</PRE>
  453. <P>Another interesting approach to a switch statement is arrange
  454. for a <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A> block to return the proper value:</P>
  455. <PRE>
  456.     $amode = do {
  457.         if     ($flag & O_RDONLY) { "r" }       # XXX: isn't this 0?
  458.         elsif  ($flag & O_WRONLY) { ($flag & O_APPEND) ? "a" : "w" }
  459.         elsif  ($flag & O_RDWR)   {
  460.             if ($flag & O_CREAT)  { "w+" }
  461.             else                  { ($flag & O_APPEND) ? "a+" : "r+" }
  462.         }
  463.     };</PRE>
  464. <P>Or</P>
  465. <PRE>
  466.         print do {
  467.             ($flags & O_WRONLY) ? "write-only"          :
  468.             ($flags & O_RDWR)   ? "read-write"          :
  469.                                   "read-only";
  470.         };</PRE>
  471. <P>Or if you are certainly that all the <CODE>&&</CODE> clauses are true, you can use
  472. something like this, which ``switches'' on the value of the
  473. <CODE>HTTP_USER_AGENT</CODE> envariable.</P>
  474. <PRE>
  475.     #!/usr/bin/perl 
  476.     # pick out jargon file page based on browser
  477.     $dir = '<A HREF="http://www.wins.uva.nl/~mes/jargon">http://www.wins.uva.nl/~mes/jargon</A>';
  478.     for ($ENV{HTTP_USER_AGENT}) { 
  479.         $page  =    /Mac/            && 'm/Macintrash.html'
  480.                  || /Win(dows )?NT/  && 'e/evilandrude.html'
  481.                  || /Win|MSIE|WebTV/ && 'm/MicroslothWindows.html'
  482.                  || /Linux/          && 'l/Linux.html'
  483.                  || /HP-UX/          && 'h/HP-SUX.html'
  484.                  || /SunOS/          && 's/ScumOS.html'
  485.                  ||                     'a/AppendixB.html';
  486.     }
  487.     print "Location: $dir/$page\015\012\015\012";</PRE>
  488. <P>That kind of switch statement only works when you know the <CODE>&&</CODE> clauses
  489. will be true.  If you don't, the previous <CODE>?:</CODE> example should be used.</P>
  490. <P>You might also consider writing a hash of subroutine references
  491. instead of synthesizing a <CODE>switch</CODE> statement.</P>
  492. <P>
  493. <H2><A NAME="goto">Goto</A></H2>
  494. <P>Although not for the faint of heart, Perl does support a <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>
  495. statement.  There are three forms: <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>-LABEL, <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>-EXPR, and
  496. <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>-&NAME.  A loop's LABEL is not actually a valid target for
  497. a <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>; it's just the name of the loop.</P>
  498. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>-LABEL form finds the statement labeled with LABEL and resumes
  499. execution there.  It may not be used to go into any construct that
  500. requires initialization, such as a subroutine or a <CODE>foreach</CODE> loop.  It
  501. also can't be used to go into a construct that is optimized away.  It
  502. can be used to go almost anywhere else within the dynamic scope,
  503. including out of subroutines, but it's usually better to use some other
  504. construct such as <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die</CODE></A>.  The author of Perl has never felt the
  505. need to use this form of <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A> (in Perl, that is--C is another matter).</P>
  506. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>-EXPR form expects a label name, whose scope will be resolved
  507. dynamically.  This allows for computed <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>s per FORTRAN, but isn't
  508. necessarily recommended if you're optimizing for maintainability:</P>
  509. <PRE>
  510.     goto(("FOO", "BAR", "GLARCH")[$i]);</PRE>
  511. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>-&NAME form is highly magical, and substitutes a call to the
  512. named subroutine for the currently running subroutine.  This is used by
  513. <CODE>AUTOLOAD()</CODE> subroutines that wish to load another subroutine and then
  514. pretend that the other subroutine had been called in the first place
  515. (except that any modifications to <CODE>@_</CODE> in the current subroutine are
  516. propagated to the other subroutine.)  After the <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>, not even <A HREF="../../lib/Pod/perlfunc.html#item_caller"><CODE>caller()</CODE></A>
  517. will be able to tell that this routine was called first.</P>
  518. <P>In almost all cases like this, it's usually a far, far better idea to use the
  519. structured control flow mechanisms of <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_redo"><CODE>redo</CODE></A> instead of
  520. resorting to a <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A>.  For certain applications, the catch and throw pair of
  521. <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval{}</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> for exception processing can also be a prudent approach.</P>
  522. <P>
  523. <H2><A NAME="pods: embedded documentation">PODs: Embedded Documentation</A></H2>
  524. <P>Perl has a mechanism for intermixing documentation with source code.
  525. While it's expecting the beginning of a new statement, if the compiler
  526. encounters a line that begins with an equal sign and a word, like this</P>
  527. <PRE>
  528.     =head1 Here There Be Pods!</PRE>
  529. <P>Then that text and all remaining text up through and including a line
  530. beginning with <CODE>=cut</CODE> will be ignored.  The format of the intervening
  531. text is described in <A HREF="../../lib/Pod/perlpod.html">the perlpod manpage</A>.</P>
  532. <P>This allows you to intermix your source code
  533. and your documentation text freely, as in</P>
  534. <PRE>
  535.     =item snazzle($)</PRE>
  536. <PRE>
  537.     The snazzle() function will behave in the most spectacular
  538.     form that you can possibly imagine, not even excepting
  539.     cybernetic pyrotechnics.</PRE>
  540. <PRE>
  541.     =cut back to the compiler, nuff of this pod stuff!</PRE>
  542. <PRE>
  543.     sub snazzle($) {
  544.         my $thingie = shift;
  545.         .........
  546.     }</PRE>
  547. <P>Note that pod translators should look at only paragraphs beginning
  548. with a pod directive (it makes parsing easier), whereas the compiler
  549. actually knows to look for pod escapes even in the middle of a
  550. paragraph.  This means that the following secret stuff will be
  551. ignored by both the compiler and the translators.</P>
  552. <PRE>
  553.     $a=3;
  554.     =secret stuff
  555.      warn "Neither POD nor CODE!?"
  556.     =cut back
  557.     print "got $a\n";</PRE>
  558. <P>You probably shouldn't rely upon the <A HREF="../../lib/Pod/perlfunc.html#item_warn"><CODE>warn()</CODE></A> being podded out forever.
  559. Not all pod translators are well-behaved in this regard, and perhaps
  560. the compiler will become pickier.</P>
  561. <P>One may also use pod directives to quickly comment out a section
  562. of code.</P>
  563. <P>
  564. <H2><A NAME="plain old comments (not!)">Plain Old Comments (Not!)</A></H2>
  565. <P>Much like the C preprocessor, Perl can process line directives.  Using
  566. this, one can control Perl's idea of filenames and line numbers in
  567. error or warning messages (especially for strings that are processed
  568. with <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A>).  The syntax for this mechanism is the same as for most
  569. C preprocessors: it matches the regular expression
  570. <CODE>/^#\s*line\s+(\d+)\s*(?:\s"([^"]+)")?\s*$/</CODE> with <CODE>$1</CODE> being the line
  571. number for the next line, and <CODE>$2</CODE> being the optional filename
  572. (specified within quotes).</P>
  573. <P>Here are some examples that you should be able to type into your command
  574. shell:</P>
  575. <PRE>
  576.     % perl
  577.     # line 200 "bzzzt"
  578.     # the `#' on the previous line must be the first char on line
  579.     die 'foo';
  580.     __END__
  581.     foo at bzzzt line 201.</PRE>
  582. <PRE>
  583.     % perl
  584.     # line 200 "bzzzt"
  585.     eval qq[\n#line 2001 ""\ndie 'foo']; print $@;
  586.     __END__
  587.     foo at - line 2001.</PRE>
  588. <PRE>
  589.     % perl
  590.     eval qq[\n#line 200 "foo bar"\ndie 'foo']; print $@;
  591.     __END__
  592.     foo at foo bar line 200.</PRE>
  593. <PRE>
  594.     % perl
  595.     # line 345 "goop"
  596.     eval "\n#line " . __LINE__ . ' "' . __FILE__ ."\"\ndie 'foo'";
  597.     print $@;
  598.     __END__
  599.     foo at goop line 345.</PRE>
  600. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  601. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  602. <STRONG><P CLASS=block> perlsyn - Perl syntax</P></STRONG>
  603. </TD></TR>
  604. </TABLE>
  605.  
  606. </BODY>
  607.  
  608. </HTML>
  609.