I am trying to build a 3 element arry that has no duplicates. I am getting a one element array.
Can somebody help me?
open(IN, "D:\\EDI\\810\\ma540csv") or die 'Could not open file for reading';
foreach $line (<IN>)
{
@field = split(/\,/, $line);
$numb = substr($field[10],0,1); # first digit of number
if ($field[0] eq "H")
{
$f_index = 0;
$comp = $field[1];
$vend = $field[2]);
for ($i= 0; $i < @array; $i++)
{
if ($array[$i] eq $comb)
{
$f_index = $i;
last;
}
}
if ($f_index < @array)
{
$count[$f_index]++; # found & $f_index is index
}
else
{
$count = 1;
@list = ($comp,$vend,$count); # not found so add to array
push(@array, @list); # add element to array
}
}
}
close(IN);
The data is
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,1533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,1533864
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,7533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,7533864
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,8533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,8533864
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,1533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,1533864
Can somebody help me?
open(IN, "D:\\EDI\\810\\ma540csv") or die 'Could not open file for reading';
foreach $line (<IN>)
{
@field = split(/\,/, $line);
$numb = substr($field[10],0,1); # first digit of number
if ($field[0] eq "H")
{
$f_index = 0;
$comp = $field[1];
$vend = $field[2]);
for ($i= 0; $i < @array; $i++)
{
if ($array[$i] eq $comb)
{
$f_index = $i;
last;
}
}
if ($f_index < @array)
{
$count[$f_index]++; # found & $f_index is index
}
else
{
$count = 1;
@list = ($comp,$vend,$count); # not found so add to array
push(@array, @list); # add element to array
}
}
}
close(IN);
The data is
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,1533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,1533864
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,7533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,7533864
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,8533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,8533864
H,0000, 514659,GHXPCCONNECT810,45066599,,,,,,1533864
D,0000, 514659,GHXPCCONNECT810,45066599,,1,,,,1533864