Description:
Find whether the parameter is of string data type.
Syntax:
ifstring(Exp)
Note:
The function finds whether the parameter Exp is of string type.
Parameter:
Exp |
Expression of any data type |
Return value:
Boolean value
Example:
ifstring("abc") |
true |
ifstring(1234) |
false |
ifstring("1980-01-01") |
true |
ifstring(date("1980-01-01")) |
false |
Related functions: