Schrift
[thread]10475[/thread]

Anfang meiner Variable...



<< >> 2 Einträge, 1 Seite
simon78
 2007-09-26 23:02
#100038 #100038
User since
2007-09-26
11 Artikel
BenutzerIn
[default_avatar]
Hallo zusammen,

ich will dass wenn meine Variable mit 00x anfängt muss etwas gemacht werden, wenn meine Variable mit 0xx anfängt dann muss was anders gemacht werden und wenn meine Variable mit xxx anfängt dann muss noch was anderes gemacht werden.

x ist eine beliebige Zahl.

Danke für die Hilfe.
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
<< >> 2 Einträge, 1 Seite



View all threads created 2007-09-26 23:02.