Help for this page

Select Code to Download


  1. or download this
    sub _isNumeric {
            my ($value) = @_; 
    ...
              };
    print "Key1: It is a number\n" if _isNumeric( $var->{'key1'} ) ;
    print "Key2: It is a number\n" if _isNumeric( $var->{'key2'} ) ;
    
  2. or download this
    Key1: It is a number
    Key2: It is a number