Thread Umlaute ersetzen
(14 answers)
Opened by pktm at 2003-10-22 11:14
[quote=renee,22.10.2003, 10:05]
Code (perl): (dl
)
1 2 3 4 5 my $string = 'HALLO'; $string = lc($string); # jetzt alles Kleinbuchstaben $string = 'ÄÖÜäöüß'; $string =~ tr/ÄÖÜäöüß/AOUaous/; # dein 2. Punkt $string =~ s/[^\d]//g;# Liste der NICHT zuersetzenden Zeichen kannst Du natürlich beliebig erweitern... Ich wuerde die Reihenfolge aendern: Code (perl): (dl
)
1 2 3 4 $string = 'ÄÖÜäöüß'; $string =~ tr/ÄÖÜäöüß/AOUaous/; # dein 2. Punkt $string = lc($string); $string =~ s/[^\d]//g; Lieblingsmodule: IPC::System::Simple, Path::Class
|