in reply to Re^5: Two hash keys created when '.' is in the string
in thread Two hash keys created when '.' is in the string

/me eats his words.

You are 100% correct. Here is an example (that I had to run to beleive it).

my $test = "Hello world!"; print "Matched\n" if $test =~ /(Hello)/; print "\$1 = $1\n"; print "Matched\n" if $test =~ /world/; print "\$1 = $1\n"; __DATA__ Matched $1 = Hello Matched $1 =

___________
Eric Hodges