Thread Differenz in Jahren zwischen zwei Datem ("Datums") (5 answers)
Opened by Gast at 2013-10-24 14:27

Gast Gast
 2013-10-25 07:49
#171467 #171467
Guten Morgen! Danke für die Tipps. Ich probiere die Sachen gleich mal aus. Ich habe das mit dem Abziehen und Abfragen gestern so (vielleicht etwas umständlicher) gelöst. Scheint zu funktionieren.

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
        use strict;
        use warnings;


        my $date_ok = "nicht ok";
                
        my $day_birth = "28";
        my $month_birth = "12";
        my $year_birth = "2009";

        my $day_p_date = "28";
        my $month_p_date = "11";
        my $year_p_date = "2013";


        if (($year_p_date-$year_birth) < 5) {
                
                 if (($year_p_date-$year_birth) < 4) { $date_ok = 1; }
                 else { 
                        if (($month_p_date - $month_birth) < 0) {  $date_ok = 2; }
                        else { 
                                if (($month_p_date - $month_birth) > 0) { $date_ok = "nicht ok .."; }                   
                                else { 
                                        if (($day_p_date-$day_birth) < 0)  {  $date_ok = 3; }
                                }       
                        }
                }
        }
        print $date_ok;

Last edited: 2013-10-25 07:57:17 +0200 (CEST)

View full thread Differenz in Jahren zwischen zwei Datem ("Datums")