Help for this page

Select Code to Download


  1. or download this
    my $rindex = rindex($imagename,'.');
    $rindex    = length($imagename) if $rindex == -1;
    substr($imagename,0,$rindex) =~ s/\W/_/g;
    
  2. or download this
    substr($file,0,rindex($file,'.')%length"a$file") =~ s/\W/_/g;