...my script, and create Hash from .
I have a trouble with create Uniq hash .
open(FILE, "data.csv") || die("Could not open file!");
my %x = ();
while (<FILE>) {
next if $_ =~ m/^(\s)*$/; # skip blank lines
next if $_ =~ m/^(,)*$/;
@arr = split(/;/, $_);
$Temp{@arr[0]}{@arr[2]} = @arr[1];
}