- or download this
...
my @hits = ();
...
} # (end of this little "for loop"
if ($got_a_pattern) {
...
- or download this
...
for my $chr ( split //, $doword ) {
...
}
if ($got_a_pattern) {
...
- or download this
foreach (@template2) {
$_ =~ tr/ //d;
if ($_ eq " ") { next; }
push @template,$_;
}
- or download this
tr/ //d;
push @template, $_ if ($_); # true when $_ is not an empty s
+tring