• tetris11
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    edit-2
    12 hours ago
    function validate(val) 
       try:  
           cast val as numeric
       except:
          print "Oops, not a number"
          cast val as general  ## date or whatever 
    end
    
    validate(12.5)     ## returns 12.5
    validate("12.5")   ## returns 12.5
    validate("12 . 5") ## returns a date maybe