- or download this
sub Filter {
my $Text = shift;
...
return $Text =~ /Hello(?i:one|two|three| )*World/ ? 1 : 0;
}
- or download this
sub Filter {
my $Text = shift;
...
return 0 + $Text =~ /Hello(?i:one|two|three| )*World/;
}
- or download this
sub Filter {
my $Text = shift;
...
return $Text =~ /Hello(?i:one|two|three| )*World/;
}