StringsΒΆ
These error checks allow various checks suitable for strings, f.e. checking if a string is at least 10 characters long or if a string contains a specific word.
- ContainsAll
Checks if a field contains all of the configured values.
- ContainsNone
Checks if a field contains none of the configured values.
- ContainsOne
Checks if a field contains at least one of the configured values.
- ContainsOnly
Checks if a field contains only the configured characters.
- LengthMax
Checks if the value of a field has less than the configured length.
- LengthMin
Checks if the value of a field has at least the configured length.
- LengthRange
Checks if the length of the value of a field is between or equal the configured values.
- PregMatch
Checks a field value using the configured perl regular expression.