in reply to Re: Perl oddities
in thread Perl oddities
my ($this, $that, $some, $other) = /(this)(that).*(some)....(other)$/; my ($cap) = /hello(there)/; # OK my $cap = /hello(there)/; # BUG
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl oddities
by Anonymous Monk on Mar 02, 2005 at 13:38 UTC |