Help for this page

Select Code to Download


  1. or download this
    $string =~ s/\s*[\w\-]*$/.../;
    return $string;
    
  2. or download this
    $string =~ s/\s*(?:[\w\-]+|\W)$/.../;
    
  3. or download this
    $string =~ s/\s*[\w\-]+$/.../ or $string =~ s/\s*\W$/.../;