Thread Perl Bug bei int? (44 answers)
Opened by Rolf_PlusW at 2013-03-01 11:29

Gast wer
 2013-03-02 09:26
#166131 #166131
Warum nur so kompliziert?
Code (perl): (dl )
1
2
3
4
5
6
7
sub integer {
    my $wert = shift ( @_ ) || 0;
    return 0 if $wert =~ /e[+\-]?\d+$/;
    $wert=$1 if $wert =~ /^(.*?)\./;
    $wert=0 unless $wert;
    return $wert;
}

Last edited: 2013-03-02 09:58:37 +0100 (CET)

View full thread Perl Bug bei int?