Help for this page

Select Code to Download


  1. or download this
    $input =~ /([a-zA-Z]+)/;
    $input = $1;
    
  2. or download this
    $input =~ s/[^a-zA-Z]//g; # keep valid stuff
    ($input) = $input =~ /(.*)/; # now officially untaint it