Help for this page

Select Code to Download


  1. or download this
     if ($file =~ /Rajesh.(\d+).*/) {
        print $1;
                }
    
  2. or download this
    my $sec  =  0;    # Not Feeded
    my $min  =  19;
    ...
    print "$unixtime\n";
    my $readable_time = localtime($unixtime);
    print "$readable_time\n";
    
  3. or download this
    my $CurrentTime = time();
    my $Todaydate = localtime($startTime);