Many years ago there was a function in the language I was using that would return true or false if the string was a number:
Aside from rolling my own is there a way to do this now in PB / WIN?
Code:
MY_STRING = "1234567" IF MY_STRING IS NBR THEN PRINT "ITS A NUMBER!"
Comment