isBlank

Returns true if the given value is blank. A string is considered blank if any of the following conditions are true:

  • The string is null
  • The length of the string is equal to 0
  • The string only contains blank characters, i.e. space, newline or tab
@property
bool
isBlank
(
T
)
(
T t
)

Return Value

Type: bool

$(D_KEYWORD true) if any of the above conditions are met

See Also

isPresent

Meta