Broad Network


Perl Loop Statements

Perl Basics – Part 8

Perl Course

Foreword: A loop is a set of statements that executes repeatedly until a specified condition is met. In Perl, you have the do-while loop, the while-loop and the for-loop. You will see what all these mean in this article.

By: Chrysanthus Date Published: 29 Mar 2015

Introduction

This is part 8 of my series, Perl Basics. A loop is a set of statements that executes repeatedly until a specified condition is met. In Perl, you have the do-while loop, the while-loop and the for-loop. You will see what all these mean in this article. A loop itself is a statement that has other statements inside. You should have read the previous parts of the series before reaching here, as this is a continuation.

The do-while Loop
Try the following code first:

use strict;

my $n = 0;

do
    {
        print $n; print "\n";
        ++$n;
    } while ($n<5);

Let us look at what is in the code. Zero is assigned to a variable, $n. Then you have the do-while loop statement. The first thing in the statement is, do. This is an instruction to the Perl Interpreter to execute what is inside the curly braces.

The interpreter executes statements in a program from top to bottom. The first statement to execute is the declaration and assignment of the variable, $n. The next statement is the do-while loop statement (construct). So, as soon as the interpreter sees, do, it executes all the statements in the curly braces. There are two statements in the block. The first one displays the value of $n. The second one increments, $n.

Now, after the second curly brace, you have the word, while. do and while are reserved words. They are instructions to the Perl interpreter. After the word, while, you have a condition. So, do instructs the interpreter to execute the statements in the curly braces. Immediately after that the interpreter sees while. while evaluates the condition to see if the condition results in true. If it results in true (returns true), then the statements in the curly braces are executed again. The while condition is checked again; if it is true the block is executed again. This cycle repeats until the condition is false.

For the case above the start value for $n is zero. When the block is executed, zero is displayed and then the value of $n is increased to 1, from zero. As $n is 1, the while condition becomes, “while (1 < 5)”. This evaluates to true. So the block is executed again. This time, the value of $n is 1, the first statement in the block displays 1. The second statement increments the value of $n to 2. The while condition becomes,  “while (2 < 5)”, which is true. So the cycle repeats. The cycle keeps repeating and $n is incrementing. This continues until the while condition is, “while (5 < 5)”. Now this evaluates to false, and so the block is not re-executed again.

The highest value of $n displayed is 4, but $n arrives at a value of 5, since in the block, it is displayed before being incremented.

The syntax for the do-while statement is:

do
    {
        statements
    } while (condition);

Note the semicolon after the condition.

The while Loop Statement
The syntax for the while loop statement (construct) is

while (condition)
    {
        statements
    }

The while loop statement is almost the same as the do-while loop statement with the following difference: There is no do instruction for the while loop. With the while loop, if at the start, the condition evaluates to false, the block is never executed. For the do-while loop, the block is evaluated at least once (the first time).

The for Loop
In the first code of this part of the series, there are two main statements. The declaration and assignment statement and the do-while loop statement. These two statements can be combined, in another loop called the for-loop. This is the whole code in the for loop:

use strict;

for (my $n=0; $n<5; ++$n)
    {
        print $n; print "\n";
    }

All we have in this code is the for-loop. The for-loop begins with the reserved word, for, followed by parentheses, then the block to be executed. In the parentheses there are three expressions (statements), separated by semicolons.

In the parentheses, the first expression is the declaration and initialization of the variable, $n. The next expression in the parentheses is the while condition we had. What pushed the do-while loop to be repeating was the incrementing of $n, that is, ++$n. In the parentheses of the for-loop, this is the third expression. There were two statements in the block of the do-while loop. One of the statements is now in the parentheses of the for-loop. The other one goes into the block of the for-loop.

The difference between this for-loop code and the first code above is that if the while condition is false the first time, the for-loop will never execute. In this way the for-loop is closer to the while-loop than the do-while loop.

Just note that in the parentheses of the for-loop, the first $n is preceded with the reserved word, my. Generally, according to the philosophy of this series, whenever a variable is typed for the first time in code, precede it with, my.

Read and try the above code.

A simplified syntax for the for-loop is given below. The explanation is given after.

for ([initialExpression]; [condition]; [incrementExpression]) {
   statements
}

When a for loop executes, the following occurs:

- The initializing expression, initial-expression, if any, is executed. This expression usually initializes (assigns a value to a variable) one or more loop counters. This expression can also declare variables.
- The condition expression is evaluated. If the value of condition is true, the loop statements will execute. If the value of the condition is false, the for loop ends. If the expression for the condition is omitted, the condition is assumed to be true.
- The block statements execute.
- The increment (or update) expression, if there is one, executes, and control returns to Step 2.  

The last Command
The “last;” statement (command) can be used to terminate a loop before its determined end. Try the following code and note that the loop ends after $n is 2.

use strict;

for (my $n=0; $n<5; ++$n)
    {
        print $n; print '<br />';
        if ($n == 2)
            {
                last;
            }
    }

Each time in the loop, the if-condition is checked for the value of true. When $n is 2, the if-condition will return true; making the if-block to execute. In the if-block, you have just one statement, the last statement. It is just one word, last. Always end the last statement and other statements with a semicolon. The last statement stops the loop from repeating. In this case it stopped the loop when the internal if-condition occurred (was true).

The next command
You can cause an iteration to be skipped as the loop is repeating. You use the next statement for this. It is just one word, next. Always end it with a semicolon. The following code illustrates this, when $n is 2. The iteration for $n equal 2 is skipped.

use strict;

for (my $n=0; $n<5; ++$n)
    {
        if ($n == 2)
            {
                next;
            }
        print $n; print '<br />';
    }

In order to skip the iteration of the block, you put the next statement and its condition at the beginning of the block.

This is how the next statement behaves:

- In a while loop, it jumps back to the condition.
- In a for loop, it jumps to the update (increment) expression.

We have come to the end of this part of the series, we continue in the next part.

Chrys

Related Links

Perl Basics
Perl Data Types
Perl Syntax
Perl References Optimized
Handling Files and Directories in Perl
Perl Function
Perl Package
Perl Object Oriented Programming
Perl Regular Expressions
Perl Operators
Perl Core Number Basics and Testing
Commonly Used Perl Predefined Functions
Line Oriented Operator and Here-doc
Handling Strings in Perl
Using Perl Arrays
Using Perl Hashes
Perl Multi-Dimensional Array
Date and Time in Perl
Perl Scoping
Namespace in Perl
Perl Eval Function
Writing a Perl Command Line Tool
Perl Insecurities and Prevention
Sending Email with Perl
Advanced Course
Miscellaneous Features in Perl
Perl Two-Dimensional Structures
Advanced Perl Regular Expressions
Designing and Using a Perl Module
More Related Links
Perl Mailsend
PurePerl MySQL API
Perl Course - Professional and Advanced
Major in Website Design
Web Development Course
Producing a Pure Perl Library
MySQL Course

BACK NEXT

Comments

Become the Writer's Fan
Send the Writer a Message