What do you get with this
#!/usr/bin/perl use strict; use warnings; use Data::Dump 'pp'; my $file_name = "file.csv"; open my $lines, '<', $file_name or die "Can't open file $file_name, $!"; while (my $line = <$lines>) { pp $line; }
In reply to Re^7: Undef values from file open
by poj
in thread Undef values from file open
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |