in reply to Problems reading records from file
#!/usr/bin/perl use strict; use warnings; { local $/; open DATA, '<',"san.txt" or die $!; my @blocks = map { [ split /\n/ ] } ( split /(?=ITEM NO:)/, ( map { s/#.*?\n//sg; $_ } <DATA> )[0] +); close DATA; for(@blocks){ my @array = @$_; unless(@array){ print "There is no item remaining in the file"; last; } print "@array\n"; } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Problems reading records from file
by sanjay nayak (Sexton) on Oct 23, 2006 at 10:23 UTC |