Help for this page

Select Code to Download


  1. or download this
    while(<LINES>){                                  
        if (m/^--/){   
               push (my @data, [$id,$line]);
    ...
            $line.=$string;                            
        }                                            
    }
    
  2. or download this
    while(<LINES>){                                  
        if (m/^--/){   
               next unless defined $line;
    ...
            $line.=$string;                            
        }                                            
    }