Perl IF ... ELSE istruzione
Un Perl if L'istruzione può essere seguita da un opzionale else istruzione, che viene eseguita quando l'espressione booleana è falsa.
Sintassi
La sintassi di un file if...else dichiarazione nel linguaggio di programmazione 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 l'espressione booleana restituisce true, poi il if block di codice verrà eseguito altrimenti else block di codice verrà eseguito.
Il numero 0, le stringhe "0" e "", l'elenco vuoto () e undef sono tutti false in un contesto booleano e tutti gli altri valori lo sono true. Negazione di un valore reale da parte di! o not restituisce un valore falso speciale.
Diagramma di flusso
Esempio
#!/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 il codice sopra viene eseguito, produce il seguente risultato:
a is greater than 20
value of a is : 100
a has a false value
value of a is :