minLength

Creates a min length validation action.

const Action = v.minLength<TInput, TRequirement, TMessage>(
  requirement,
  message
);

Generics

Parameters

  • requirement TRequirement
  • message TMessage

Explanation

With minLength you can validate the length of a string or array. For strings, length is measured like JavaScript's value.length, i.e. by UTF-16 code units. For arrays, length is measured by the number of items. If the input does not match the requirement, you can use message to customize the error message.

If you need to validate the minimum number of user-perceived characters, use minGraphemes instead.

Returns

Examples

The following examples show how minLength can be used.

Minimum string length

Schema to validate a string with a minimum length of 3 UTF-16 code units.

const MinStringSchema = v.pipe(
  v.string(),
  v.minLength(3, 'The string must be 3 or more UTF-16 code units long.')
);

Minimum array length

Schema to validate an array with a minimum length of 5 items.

const MinArraySchema = v.pipe(
  v.array(v.number()),
  v.minLength(5, 'The array must contain 5 numbers or more.')
);

The following APIs can be combined with minLength.

Schemas

Methods

Actions

Utils

Contributors

Thanks to all the contributors who helped make this page better!

  • GitHub profile picture of @fabian-hiller
  • GitHub profile picture of @depsimon
  • GitHub profile picture of @yslpn

Partners

Thanks to our partners who support the project ideally and financially.

Sponsors

Thanks to our GitHub sponsors who support the project financially.

  • GitHub profile picture of @vasilii-kovalev
  • GitHub profile picture of @UpwayShop
  • GitHub profile picture of @ruiaraujo012
  • GitHub profile picture of @hyunbinseo
  • GitHub profile picture of @nickytonline
  • GitHub profile picture of @kibertoad
  • GitHub profile picture of @caegdeveloper
  • GitHub profile picture of @Thanaen
  • GitHub profile picture of @bmoyroud
  • GitHub profile picture of @ysknsid25
  • GitHub profile picture of @dslatkin