Skip to content

NotEmpty

  • NotEmpty()

Validates whether the given input is not empty. This function also takes whitespace into account, use noWhitespace() if no spaces or linebreaks and other whitespace anywhere in the input is desired.

v.stringType().notEmpty().validate('')  # false

Null values are empty:

v.notEmpty().validate(None)  # false

Numbers:

v.intVal().notEmpty().validate(0)  # false

Empty arrays:

v.listType().notEmpty().validate([])  # false

Whitespace:

v.stringType().notEmpty().validate('        ')  # false
v.stringType().notEmpty().validate("\t \n \r")  # false

Categorization

  • Miscellaneous

Changelog

Version Description
1.0.0 Created

See also: