in reply to Is it possible to insert a record after line 5 that appears on line 10?
#!/usr/bin/perl use strict; my $data_pos = tell DATA; my $record; while (my $line = <DATA>) { chomp( $line ); $record = $line if ( $line =~ /^:16R:USECU/ ); } seek DATA, $data_pos, 0; while (my $line = <DATA>) { chomp( $line ); print "$line\n" if ( $record && $line =~/^:16S:GENL/ ); } __DATA__ :16S:LINK :16S:GENL :16R:USECU
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Is it possible to insert a record after line 5 that appears on line 10?
by dirtdog (Monk) on Jun 23, 2010 at 23:00 UTC |