Thread Anfang meiner Variable...
(1 answers)
Opened by simon78 at 2007-09-26 23:02 simon78+2007-09-26 21:02:26-- zahl oder ziffer? ich nehme mal an, ziffer Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 if ($string =~ m/^00[0-9]/) { # ... } elsif ($string =~ m/^0[0-9]{2}/) { # ... } elsif ($string =~ m/^[0-9]{3}/) { # ... } siehe perlretut 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 |