artBlankString
artBlankString(g_value) =>t/nil
Description
Returns true if the given object is equal to nil. If the given object is a string, checks if the string is empty or has blank space characters only and returns true. If the object is not nil and if the string has non-space characters, it returns nil.
Argument
Value Returned
|
If the given object is |
|
Examples
artBlankString("") => t
artBlankString("h") => nil
artBlankString(nil) => t
Return to top