- or download this
my $eq_qq = qr/
\s+
...
if ($line =~ $long_regex) {
print "$1\n$2\n$3\n$4\n$5\n$6\n$7\n$8\n$9\n$10";
}
- or download this
c:\test>220232
3
...
1
F
- or download this
my @fields = $line =~ $long_regex;
if (@fields == 10) {
# process $fields[0] .. $fields[9] here
}
- or download this
my ($id,
$status,
...
# Use $id...
}
...