Help for this page

Select Code to Download


  1. or download this
      my @split = split(/\./,$file);
      my $key = $split[1];
    
  2. or download this
      my $key = ( split /\./, $file )[ -1 ];