Help for this page

Select Code to Download


  1. or download this
    while (my $data = $ss->getNextRow()) {
       # skip lines until we find column header "Last Name" in first colum
    +n
    ...
    
       ... stuff ...
    }
    
  2. or download this
    while (my $data = $ss->getNextRow()) {
       # skip lines until we find a non-blank row
    ...
    
       ... stuff ...
    }
    
  3. or download this
    while (my $data = $ss->getNextRow()) {
       # skip lines unless they have the right number of columns
    ...
    
       ... stuff ...
    }