Regex Match Check¶
Check: regex-match-check
Purpose: Validates that string values in a column match a given regular expression pattern. Use this to enforce format compliance for structured fields such as email addresses, identifiers, or standardized codes.
!!! note - Null values are skipped by default. Set treat_null_as_failure: true to treat them as invalid. - Pattern matching is case-sensitive by default. Use ignore_case: true for case-insensitive matching.
Typical Use Cases¶
- Validate format compliance for email addresses, phone numbers, or postal codes.
- Enforce structured identifier patterns such as
AB-12345orISO-8601date strings. - Detect malformed or free-text values in fields that require a standardized format.