Thread String - Zahl (Int) (7 answers)
Opened by Gast at 2004-05-07 10:02

Marcus
 2004-05-07 10:53
#82062 #82062
User since
2004-05-03
18 Artikel
BenutzerIn
[default_avatar]
Hallo,

falls Du noch pingeliger werden willst:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;

sub ist_zahl {
 if ( $_[0] =~ /^-?\d+\.?\d+$/ ) { return 1; }
 return 0;
}

my $str = '123';
ist_zahl($str) or print "$str ist keine Zahl\n";
$str = '-123';
ist_zahl($str) or print "$str ist keine Zahl\n";
$str = '12.3';
ist_zahl($str) or print "$str ist keine Zahl\n";
$str = '-12.3';
ist_zahl($str) or print "$str ist keine Zahl\n";
$str = '1.2.3';
ist_zahl($str) or print "$str ist keine Zahl\n";

Gruß Marcus

View full thread String - Zahl (Int)