Jim wrote: > > How do I match a line ending in > ,@@) > using a regular expression?
my $line = "1234567890,@@)\n";
if ($line =~ m/,@@\)$/) {
print "OK\n";
}
HTH,
Rob
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/
