Help for this page

Select Code to Download


  1. or download this
    sub clean {
        my $s = unidecode(shift);
        $s =~ s/[^A-Za-z0-9'-]+/ /g;
        return $s;
    }