Thread Anfang meiner Variable... (1 answers)
Opened by simon78 at 2007-09-26 23:02

pq
 2007-09-26 23:18
#100042 #100042
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
simon78+2007-09-26 21:02:26--
x ist eine beliebige Zahl.

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: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Anfang meiner Variable...