- or download this
if ($target =~ /\Q$matchmember\E/) {
print "Match!\n";
}
- or download this
if ($target =~ /\Q$matchmember/) {
print "Match!\n";
}
- or download this
my @matches = $target =~ /(\Q$matchmember\E)/g;
- or download this
while ($target =~ /(\Q$matchmember\E)/g) {
print "Found $1 at $-[1]\n";
}