Instrução Perl IF ... ELSE
Um Perl if declaração pode ser seguida por um opcional else instrução, que é executada quando a expressão booleana é falsa.
Sintaxe
A sintaxe de um if...else declaração na linguagem de programação Perl é -
if(boolean_expression) {
# statement(s) will execute if the given condition is true
} else {
# statement(s) will execute if the given condition is false
}
Se a expressão booleana for avaliada como true, então o if block de código será executado de outra forma else block de código será executado.
O número 0, as strings '0' e "", a lista vazia () e undef são todos false em um contexto booleano e todos os outros valores são true. Negação de um valor verdadeiro por! ou not retorna um valor falso especial.
Diagrama de fluxo
Exemplo
#!/usr/local/bin/perl
$a = 100;
# check the boolean condition using if statement
if( $a < 20 ) {
# if condition is true then print the following
printf "a is less than 20\n";
} else {
# if condition is false then print the following
printf "a is greater than 20\n";
}
print "value of a is : $a\n";
$a = "";
# check the boolean condition using if statement
if( $a ) {
# if condition is true then print the following
printf "a has a true value\n";
} else {
# if condition is false then print the following
printf "a has a false value\n";
}
print "value of a is : $a\n";
Quando o código acima é executado, ele produz o seguinte resultado -
a is greater than 20
value of a is : 100
a has a false value
value of a is :