# Strings

### MinLength

Ensures the value of a string is at least a specified minimum length.

**Parameters:**

* `minLength`: The minimum length the string must have.

### MaxLength

Ensures the value of a string does not exceed a specified maximum length.

**Parameters:**

* `maxLength`: The maximum length allowed for the string value.

### LengthBetween

Validates that a string's length is within a specified range (inclusive).

**Parameters:**

* `min`: The minimum allowed length for the string.
* `max`: The maximum allowed length for the string.

### Match

Validates that a string matches a specified regular expression pattern.

**Parameters:**

* `pattern`: The regular expression pattern the string must match.

### EmailAddress

Validates that a value is in a valid email address format. It checks that the input contains exactly one '@' character, with characters on both sides, ensuring proper email formatting.
