Thread Schauen, ob Sonderzeichen vorhanden sind: also alles ausser a-z A-Z 0-9 _-.
(11 answers)
Opened by wkonline at 2005-02-08 20:31
wozu die regex-maschine anwerfen, wenn es so schneller geht:
if ($input =~ tr#a-zA-Z0-9_./##c) { print "nicht erlaubt" } Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |