Help for this page
my @split = split(/\./,$file); my $key = $split[1];
my $key = ( split /\./, $file )[ -1 ];