Conditional operator: The unless Modifier and while loop and __DATA__ : While « Statement « Perl
- Perl
- Statement
- While
Conditional operator: The unless Modifier and while loop and __DATA__
while(<DATA>){
print unless /N/; # Print line if it doesn't match N
}
__DATA__
A
B
I
N
J
K
Related examples in the same category