Help for this page

Select Code to Download


  1. or download this
    my $suffix = ( split /\./, $filename )[-1];
    
  2. or download this
    print ( split /\./, $filename )[-1];   # wrong
    print (( split /\./, $filename )[-1]); # unpleasant