Help for this page

Select Code to Download


  1. or download this
    my $namematch = defined $options{r} ? qr($options{r}) : qr{s/\.[^.]+$/
    +/r};
    my @name = $file =~ $namematch;
    
  2. or download this
    my $namematch = qr($options{r});
    my @name = defined $options{r} ? $file =~ $namematch : $file =~ s/(\.[
    +^.]+)+$//r;