in reply to Re^3: skip lines
in thread skip lines
i dont understand why to use "if...." because "Parameter" is always the first Value and always in my dataset...my $in_header = 1; while (<@data>) { if (/Parameter/) { $in_header = 0; next; } next if $in_header; push(@data,$_); } print @data, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: skip lines
by chromatic (Archbishop) on Jul 20, 2010 at 21:22 UTC | |
|
Re^5: skip lines
by moritz (Cardinal) on Jul 20, 2010 at 18:04 UTC |