Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        next if m/^\s+$/; # <-- add this line
        my @cellen = ( split /,/, )[ 3, 4 ];
    
  2. or download this
    next if $_ =~ m/^\s+$/;
    
  3. or download this
    while ( my $line = <>) {
        next if $line =~ m/^\s+$/; # <-- add this line
        my @cellen = ( split( /,/, $line ) )[ 3, 4 ];