Help for this page

Select Code to Download


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