bool StrIsEmpty(str s)
Returns true if s is an empty string (""
).
A string that consists of only whitespace (e.g. " "
) is not considered empty.
0
is not an empty string. It is not a string at all.
StrIsEmpty("") -> true StrIsEmpty(" ") -> false StrIsEmpty("hello") -> false