in reply to How to Save a variable outside of a loop
poj#!/usr/bin/perl use warnings; use strict; my $prev_l; my $prev_p; my $count = 0; ### add while(<>){ my $hitlength; my $prevalence; my $line = $_; chomp $line; if ($line =~ /^[\d]/){ my @hitline = split(/,/ , $line); $hitlength = $hitline[4]; $prevalence = $hitline[65]; if( ($count++) and ($hitlength == $prev_l) and ($prevalence == $prev_p) ){ next; } else { print "$line\n"; } $prev_l = $hitlength; $prev_p = $prevalence; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to Save a variable outside of a loop
by Laurent_R (Canon) on Aug 01, 2015 at 10:16 UTC | |
by AnomalousMonk (Archbishop) on Aug 01, 2015 at 10:38 UTC | |
by Laurent_R (Canon) on Aug 01, 2015 at 12:18 UTC | |
by poj (Abbot) on Aug 01, 2015 at 10:48 UTC |