ISSTRING

b = ISSTRING (x)

Returns true if x is a string and cannot be converted to a number.

Example

print ISSTRING(12)          ' Output 0
print ISSTRING("12")        ' Output 0
print ISSTRING("12E+2")     ' Output 0
print ISSTRING("abc")       ' Output 1
print ISSTRING("1+2")       ' Output 1
print ISSTRING("int(2.4)")  ' Output 1
Data
If there is insufficient information on this page and you wish learn more about ISSTRING, please send an email to smallbasic@gmail.com. You can help to improve information about ISSTRING by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.