Help for this page

Select Code to Download


  1. or download this
    map { push(@pieces,$_) } split(/\./,$file);
    
  2. or download this
    push( @pieces, $_ ) foreach split( /\./, $file );
    
  3. or download this
    pop @pieces;
    return join '.', @pieces;