- or download this
%mdata = (
$pkey => {
...
LOC => trim_trailing($rec[4])
}
)
- or download this
$mdata{$pkey} = {
ABC => trim_trailing($rec[1]),
...
UNIT => trim_trailing($rec[3]),
LOC => trim_trailing($rec[4])
};
- or download this
next unless (s/\^/\^/g == 4);
my @rec = split /\^/;
- or download this
my @rec = split /\^/;
next unless @rec == 5;