str_empty(str)

Returns true when str is empty, false otherwise.

Parameters

str: source string.

Return Value

True if the string is empty, false otherwise

Example command:

  • str_empty("")
    • returns True
  • str_empty("Hello")
    • returns False