in reply to Comma Delimitted Fields..
#!/usr/bin/perl-Tw use strict; use Text::ParseWords; open(DATA,"basicdez.dat") || die "Cannot open datfile: $!\n"; my @data; my $i = 0; while (<DATA>) { chomp; last if /^"EOS"$/; { @data = "ewords('\s+', 0, $_); } # if all fields exist (gets rid of PER issue) if (($data[0]) && ($data[1]) && ($data[2])) { my @colors=split(/,/, $data[1]); print "Name = $data[0]\n"; for (@colors){ # print each color print "Color = $_\n"; } print "Date = $data[2]\n"; } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Comma Delimitted Fields..
by Hofmator (Curate) on Oct 19, 2001 at 18:06 UTC |