Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Loops  



1.1  Loop control keywords  







2 Conditional statements  





3 Statement modifiers  





4 goto  





5 External links  














Perl control structures







Add links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


The basic control structures of Perl are similar to those used in C and Java, but they have been extended in several ways.

Loops[edit]

In the following, label is an optional identifier terminated by a colon, and block is a sequence of one of more Perl statements surrounded by braces. All looping constructs except for the C-style for-loop can have a continue block that is executed after each iteration of the loop body, before the loop condition is evaluated again.

label for ( expr1 ; expr2 ; expr3 ) block

This is the so-called C-style for loop. The first expression is evaluated prior to the first loop iteration. The second expression is evaluated prior to each iteration and the loop is terminated if it evaluates to false. The third expression is evaluated after each iteration, prior to deciding whether to perform the next. This for loop is the only looping construct that can not have a continue block, but expr3 is functionally equivalent.

label for var ( list ) block
label for var ( list ) block continue block
label foreach var ( list ) block
label foreach var ( list ) block continue block

Inforeach, var is a scalar variable that defaults to $_ if omitted. For each element of list, var is aliased to the element, and the loop body is executed once. The keywords for and foreach are synonyms and are always interchangeable.

label while ( expr ) block
label while ( expr ) block continue block
label until ( expr ) block
label until ( expr ) block continue block

The while loop repeatedly executes the loop body as long as the controlling expression is true. The condition is evaluated before the loop body. until is similar, but executes the loop body as long as the condition is false.

label block
label block continue block

The label block construct is a bit of an oddity: Perl treats a bare block – with or without a label – as a loop that is executed once. This means that the loop control keywords can be used to restart the block or to exit it prematurely; a bare block can also have a continue block.

Loop control keywords[edit]

Perl provides three loop control keywords that all accept an optional loop label as an argument. If no label is specified, the keywords act on the innermost loop. Within nested loops, the use of labels enables control to move from an inner loop to an outer one, or out of the outer loop altogether. The loop control keywords are treated as expressions in Perl, not as statements like in C or Java.

Conditional statements[edit]

if ( expr ) block
if ( expr ) block else block
if ( expr ) block elsif ( expr  ) block ... else block

unless ( expr ) block
unless ( expr ) block else block
unless ( expr ) block elsif ( expr  ) block ... else block

where block is a sequence of one of more Perl statements surrounded by braces.

The controlling expressions are evaluated in a boolean context: The numeric value 0, the strings "" and "0", and the undefined value undef are false, all other values are true. This means that the strings "0.0", "00", "-0", and "0 but true" are all true, even though their value would be converted to 0 in a numeric context; values like these are sometimes used when a successful operation needs to return 0.

Evaluating an empty array in scalar context yields undef, which is false. Therefore, the following example prints "a is empty":

my @a=(); unless (@a) { print "a is empty" }

Statement modifiers[edit]

Perl also provides variants of the loop and conditional constructs that work on a simple statement (an expression evaluated for its side-effects) instead of a block:

statement if expr;
statement unless expr;
statement while expr;
statement until expr;
statement for list;
statement foreach list;

The while and until modifiers test the controlling expression before executing the statement, just like their loop counterparts. However, they are not considered actual loops, so the loop control keywords next, last and redo cannot be used with them. They have special semantics when combined with the do keyword:

do block while expr;
do block until expr;

In these constructs, the condition is tested after the block is executed, so the block always executes at least once.

These modifiers cannot be nested, so the following is illegal

statement if expression for list;         #ERROR

and should be written as one of:

( expression ) and ( statement ) for list;
for ( list ) { statement if expression }
do { statement if expression } foreach list;

goto[edit]

There are two forms of goto in Perl:

goto label

and

goto &subroutine

The first form is generally deprecated, and is only used in rare situations. For example, when attempting to preserve error status in $?, some modules will use goto like this:

open(A, "<", $filea) or goto fail;
open(B ,">", $fileb) or goto fail;
print B <A> or goto fail;
close A or goto fail;
close B or goto fail;
return 1;
fail: $reason = "In copy: $?"; return 0;

The second form is called a tail call, and is used to enhance the performance of certain kinds of constructs where Perl's default stack management would perform non-optimally. For example:

sub factorial {
    my $n = shift;
    my $total = shift(@_) || 1;
    if ($n > 1) {
        @_ = ($n-1,$total*$n);
        goto &factorial;
    } else {
        return $total;
    }
}

This form is also used to create aliases for subroutines with minimal overhead. This can help reduce "Out of Memory" errors (or high memory usage in general) found often in repeating the same subroutine.

External links[edit]

Perl Programming/Flow control at Wikibooks


Retrieved from "https://en.wikipedia.org/w/index.php?title=Perl_control_structures&oldid=1227180806"

Categories: 
Perl
Control flow
Hidden categories: 
Articles with short description
Short description matches Wikidata
Articles lacking sources from December 2009
All articles lacking sources
 



This page was last edited on 4 June 2024, at 06:31 (UTC).

Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



Privacy policy

About Wikipedia

Disclaimers

Contact Wikipedia

Code of Conduct

Developers

Statistics

Cookie statement

Mobile view



Wikimedia Foundation
Powered by MediaWiki