Determines if a string is a decimal value
string to use.
true if the value is a decimal false otherwise.
assert("13".isDecimal == false); assert("13.333333".isDecimal == true); assert("zzzz".isDecimal == false);
See Implementation
Determines if a string is a decimal value