Help for this page

Select Code to Download


  1. or download this
    if ($value !~ /^\d{2}$/)
    {
    print "input contains more than two digit";
    }
    
  2. or download this
    if ($value !~ /^(-)*\d{2}$/)
    {
    print "input contains more than two digit";
    }