ExCellerate.Functions.General.IsBlank (excellerate v0.4.0)

Copy Markdown View Source

Returns true if a value is null, an empty string, or a string containing only whitespace.

Returns false for all other values including 0 and false.

Examples

isblank(null)    true
isblank('')      true
isblank('  ')    true
isblank('hello')  false
isblank(0)       false