- or download this
if ($line =~ /^0.{9}
(\t[0-9]{1,20}) etc. etc. etc.
- or download this
my @excelData = split /\t/, $slurpedExcelFile;
- or download this
my @excelData = split "\t", $slurpedExcelFile;
- or download this
my @numbers = grep /# your regex/, @excelData;