Help for this page

Select Code to Download


  1. or download this
    my( $name, $ext );
    {
    ...
      $ext = pop @chunks;
      $name = join '.', @chunks;
    }
    
  2. or download this
    my( $ext, $name )=(@_=split/\./, $filename and pop @_, join '.', @_);