length
Last updated
Was this helpful?
Last updated
Was this helpful?
The length
validator combines the minLength
and maxLength
validators to check that the length of a string value is within a range. Both the minLength
and maxLength
values are inclusive.
If the value being validated is null
or an empty string, then the result will be valid. This respects the rule of thumb described in the notes for the validator.
minLength
: The minimum value compared against
maxLength
: The maximum value compared against
The length
validator supports three parameter signatures:
length(minLength, maxLength)
where the minLength
and maxLength
named props are specified as values
length(propsObject)
where the props object contains minLength
and maxLength
named props
length(propsFunction)
where the props function returns a props object with minLength
and maxLength
named props