Help for this page

Select Code to Download


  1. or download this
    my $test = "2123";
    if($test=~/^\d{4}$/)
    ...
    {          
              print "<td height=20 class=grtxt>$test</td>\n";          
    }
    
  2. or download this
    my $test = "2523";
    $test = "0" . $test if($test=~/^\d{4}$/);
    print "<td height=20 class=grtxt>$test</td>\n";