Help for this page

Select Code to Download


  1. or download this
    my ($name, $ext) = $_ =~ m!\A(.*)\.([^.]+)\z!s;
    
  2. or download this
    my ($name) = $_ =~ m!\A(.*)\z!s;
    
  3. or download this
     ($name, $ext) = $_ =~ m!\A(.*)\.([^.]+)\z!s;