Thread zahl in variabler? (6 answers)
Opened by chmod777 at 2012-09-26 19:35

Linuxer
 2012-09-26 21:59
#162057 #162057
User since
2006-01-27
3890 Artikel
HausmeisterIn

user image
oder auf die alte Art mit einem Regex:

Code (perl): (dl )
1
2
3
4
5
6
7
8
for my $x ( 1,2,3,4,6,8,12,13,14,42,43,134,143 ) {
  if ( $x =~ m{\A (?: 4?3 | 1?4 )  \z}x ) {
    print "$x: Plan A";
  }
  else {
    print "$x: Plan B";
  }
}
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread zahl in variabler?