I need some guidance with the following Perl code. When I leave the no strict 'refs', the sub works fine. But if the no strict 'refs' is removed, then I get the error message:
Can't use string ("A") as a symbol ref while "strict refs" in use at test.pl
It dies in the lines marked as “Here” below. This sub needs to open (write >) all files from A..Z and based on the regex from the READ file (LOG) the output will be written to the correspond file output.
use strict;
use Text::CSV_XS;
no strict 'refs';
...
...
sub file_split {
my ( $i, $fh, @FH );
my ( $file ) = @_;
my ( @alpha) = ("A".."Z");
for ( @alpha) {
$fh = $_ ;
open ( $fh,">","$_-$file" ) || die $!; <--------- HERE
push @FH, $fh;
}
my $csv = Text::CSV_XS->new( { binary => 1,
allow_whitespace => 1,
allow_loose_escapes => 1,
allow_loose_quotes =>1,
escape_char => undef ,
sep_char => ',',
auto_diag=> 1
} );
open( LOG,"<", $file ) || die $!;
while ( my $row = $csv->getline( *LOG ) ) {
if ( $row->[0] =~ /^(\w)/ ) {
print $1 <--------- HERE
"$row->[0]".",".
"$row->[1]" .",".
"$row->[2]" .",".
"$row->[3]" .",".
"$row->[4]".",".
"$row->[5]"."\n";
} else {
print "Record skipped... --> $row->[0] <-- ... please verify \n";
}
}
}
Don’t assign
$fh = $_it’s not doing anything useful.@FHshould be%FHand instead of thepushtry:Replace the
$1with$FH{ $1 }.