- or download this
if ($line[0] =~ /STAT/) {
my $name = $line[5];
print "name = >$name<\n";
my $status = $line[4];
- or download this
my @line = split (/,/,$line);
- or download this
my @line = split (/\s*,\s*/,$line);
- or download this
use strict;
use warnings;
- or download this
chomp (my @lines = <FILE>);
my %table;
foreach my $line (@lines) {
...