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.
minLength
Checks if the value of a field has at least the configured length
maxLength
Checks if the value of a field has less than the configured length
betweenLength
Checks if the length of the value of a field is between the configured values
pregMatch
Checks a field value using the configured perl regular expression You can use this check to do existing check your own way or to make checks no built-in error check exists for.
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 values