- or download this
if (/Grapes/ || /strawberry/i) {
print;
...
else {
print "$_ is not in the list.\n";
}
- or download this
if (/Grapes|(?i:strawberry)/) {
....
...
else {
....
}
- or download this
if(/foo/) {
# do something
...
else {
# complain about falling through
}