P
Paul Lalli
Ted Zlatanov said:This example does not have anything to do with the $1...$9 variables.
There are only 9 of them,
Who on earth told you that?
#!/usr/bin/perl
use strict;
no strict 'refs';
use warnings;
$_ = join '', 'a'..'z';
/(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.
)(.)(.)/;
for (1..26){
print "${$_}\n";
}
__END__
Paul Lalli