Following is the general from of a typical decision making structure found in most of the programming languages −
The number 0, the strings '0' and "" , the empty list () , and undef are all false in a boolean context and all other values are true. Negation of a true value by ! or not returns a special false value.Perl programming language provides the following types of conditional statements.
| Statement | Description |
|---|---|
| if statement | An if statement consists of a boolean expression followed by one or more statements. |
| if...else statement | An if statement can be followed by an optional else statement. |
| if...elsif...else statement | An if statement can be followed by an optional elsif statement and then by an optional else statement. |
| unless statement | An unless statement consists of a boolean expression followed by one or more statements. |
| unless...else statement | An unless statement can be followed by an optional else statement. |
| unless...elsif..else statement | An unless statement can be followed by an optional elsif statement and then by an optional else statement. |
| switch statement | With the latest versions of Perl, you can make use of the switch statement. which allows a simple way of comparing a variable value against various conditions. |
The ? : Operator
Let's check the conditional operator ? : which can be used to replace if...else statements. It has the following general form −Exp1 ? Exp2 : Exp3;Where Exp1, Exp2, and Exp3 are expressions. Notice the use and placement of the colon.
The value of a ? expression is determined like this: Exp1 is evaluated. If it is true, then Exp2 is evaluated and becomes the value of the entire ? expression. If Exp1 is false, then Exp3 is evaluated and its value becomes the value of the expression. Below is a simple example making use of this operator −
#!/usr/local/bin/perl $name = "Ali"; $age = 10; $status = ($age > 60 )? "A senior citizen" : "Not a senior citizen"; print "$name is - $status\n";This will produce the following result −
Ali is - Not a senior citizen
thank you for nice information.
ReplyDeletelearn perl