Hi !
Can anyone tell me please why the following program does not found the word CAT ?
If I put the pattern in single quotes, it works.
Why ??
#!/usr/bin/perl
use warnings;
use strict;
$_ = 'laKJJlala AHAJJ--- CAT =-=-123 sad(!@*# xsaa KUKU ff';
my $pattern = ".*(\bCAT\b).*";
my @arr;
my $k = 0;
if (@arr = /$pattern/) {
print "The text matches the pattern '$pattern'.\n";
while ($arr[$k]) {
print "\$$k is '$arr[$k]'\n";
$k++;
}
} else {
print "'$pattern' was not found.\n";
}
Can anyone tell me please why the following program does not found the word CAT ?
If I put the pattern in single quotes, it works.
Why ??
#!/usr/bin/perl
use warnings;
use strict;
$_ = 'laKJJlala AHAJJ--- CAT =-=-123 sad(!@*# xsaa KUKU ff';
my $pattern = ".*(\bCAT\b).*";
my @arr;
my $k = 0;
if (@arr = /$pattern/) {
print "The text matches the pattern '$pattern'.\n";
while ($arr[$k]) {
print "\$$k is '$arr[$k]'\n";
$k++;
}
} else {
print "'$pattern' was not found.\n";
}