Re: regular expression problem ? and * characters




compboy wrote:
Im writing a perl script now and this is part of the sricpt

chomp = ($pattern = ARGV[0]);

you clearly are not using strict
ARGV[0] should be $ARGV[0]

.