Is there a function that checks strings for only numbers? psuedo code example:
//I know that these namespaces dont exist.. just giving you an idea of what I want
System.IsNumeric("88338k33"
; //returns false
System.IsNumeric("9303 39"
; //returns false
System.IsNumeric("929229"
; //returns true
I saw something like this for characters but not for strings.
Thanks.
//I know that these namespaces dont exist.. just giving you an idea of what I want
System.IsNumeric("88338k33"
System.IsNumeric("9303 39"
System.IsNumeric("929229"
I saw something like this for characters but not for strings.
Thanks.