ISSTRING
Last updated
Was this helpful?
Last updated
Was this helpful?
The function ISSTRING outputs TRUE if the given input is a string.
This function takes any variable type as input. It then checks to see if the input is a and outputs TRUE if it is, FALSE if it isn't.
value (required, type: any) A value that may or may not be a string.
result (type: boolean) The result of checking if the given string is a string; TRUE means that it is and FALSE means that it isn't.
The following example confirms that the string "Hello, world!" is a string:
The following example takes the Number 3 and returns FALSE because 3 is a Number, not a string: