in reply to Unexpected deletion of data using > operator
I hope this is somewhat helpful.foreach my $line (@customerarray) { my ($memono, $cusref, $datestamp) = split '::', $line; if ( ($timestamp - $datestamp) > 1296000 ) { next; } else { $line = $line . $line . "\n"; } } print FH "$item";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unexpected deletion of data using > operator
by jonnyfolk (Vicar) on Dec 07, 2008 at 19:49 UTC | |
by n3toy (Hermit) on Dec 07, 2008 at 23:01 UTC |