- Perl - Sending Email
- Perl - Regular Expressions
- Perl - Coding Standard
- Perl - Special Variables
- Perl - Error Handling
- Perl - Directories
- Perl - File I/O
- Perl - Formats
- Perl - References
- Perl - Subroutines
- Perl - Date & Time
- Perl - Operators
- Perl - Loops
- Perl - IF...ELSE
- Perl - Hashes
- Perl - Arrays
- Perl - Scalars
- Perl - Variables
- Perl - Data Types
- Perl - Syntax Overview
- Perl - Environment
- Perl - Introduction
- Perl - Home
Perl Advanced
- Perl - Functions References
- Perl - Embedded Documentation
- Perl - Process Management
- Perl - Packages & Modules
- Perl - CGI Programming
- Perl - Database Access
- Perl - Object Oriented
- Perl - Socket Programming
Perl Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Perl - Loops
There may be a situation when you need to execute a block of code several number of times. In general, statements are executed sequentially: The first statement in a function is executed first, followed by the second, and so on.
Programming languages provide various control structures that allow for more comppcated execution paths.
A loop statement allows us to execute a statement or group of statements multiple times and following is the general form of a loop statement in most of the programming languages −
Perl programming language provides the following types of loop to handle the looping requirements.
Sr.No. | Loop Type & Description |
---|---|
1 | Repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body. |
2 | Repeats a statement or group of statements until a given condition becomes true. It tests the condition before executing the loop body. |
3 | Executes a sequence of statements multiple times and abbreviates the code that manages the loop variable. |
4 | The foreach loop iterates over a normal pst value and sets the variable VAR to be each element of the pst in turn. |
5 | Like a while statement, except that it tests the condition at the end of the loop body |
6 | You can use one or more loop inside any another while, for or do..while loop. |
Loop Control Statements
Loop control statements change the execution from its normal sequence. When execution leaves a scope, all automatic objects that were created in that scope are destroyed.
Perl supports the following control statements. Cpck the following pnks to check their detail.
Sr.No. | Control Statement & Description |
---|---|
1 | Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating. |
2 | Terminates the loop statement and transfers execution to the statement immediately following the loop. |
3 | A continue BLOCK, it is always executed just before the conditional is about to be evaluated again. |
4 | The redo command restarts the loop block without evaluating the conditional again. The continue block, if any, is not executed. |
5 | Perl supports a goto command with three forms: goto label, goto expr, and goto &name. |
The Infinite Loop
A loop becomes infinite loop if a condition never becomes false. The for loop is traditionally used for this purpose. Since none of the three expressions that form the for loop are required, you can make an endless loop by leaving the conditional expression empty.
#!/usr/local/bin/perl for( ; ; ) { printf "This loop will run forever. "; }
You can terminate the above infinite loop by pressing the Ctrl + C keys.
When the conditional expression is absent, it is assumed to be true. You may have an initiapzation and increment expression, but as a programmer more commonly use the for (;;) construct to signify an infinite loop.
Advertisements