- or download this
my @matches = (
$element =~ /(WEED)/,
...
if (@matches) {
...
}
- or download this
if (my @matches = map { /(WEED)/, /(DIAL)/, /(PIES)/, /(KILLD)/ } $ele
+ment) {
...
}
- or download this
if (my @matches = $element =~ /(WEED|DIAL|PIES|KILLD)/g) {
...
}