Perl last StatementThe last statement in Perl is like break statement in C. It is used inside a loop to exit the loop immediately. In other words, last condition iterates the loop. The Perl syntax for last statement is given below: Perl last Statement ExampleFollowing is a simple example showing Perl last statement. Output: Please enter an item to know the price: boots boots costs is Rs. 1200 Please enter an item to know the price: top top is not in our list. We apologise!! In the above program
Perl last Statement with LABELUsing the Perl last statement alone, you can exits only innermost loop. If you want to exit a nested loop, put a label in the outer loop and pass label to the last statement. If LABEL is specified with last statement, execution drops out of the loop encountering LABEL instead of currently enclosing loop. The Perl syntax for last statement with LABEL is given below: Perl last Statement with LABEL ExampleOutput: Please enter an item to know the price: jaggi boots costs is Rs. 800 Please enter an item to know the price: jeans jeans is not in our list. We apologise!! The above program works in the same way except that it asks the user to enter a search key again if it couldn't find a match. Two labels OUTER and INNER are used. Inside foreach loop, if match is found, we'll exit both the loops because OUTER label is passed to the last statement. Next TopicPerl next Statement |