Skip to content

Regular Expression Rule (regex) ​

Extracts data using regular expression patterns.

FieldDescriptionRequired
patternRegular expression pattern to matchβœ… Yes

Example: ​

json
{
    "type": "regex",
    "source_column": "email",
    "destination_column": "domain",
    "pattern": "@([^.]+\\.[^.]+)$"
}

Behavior: Extracts the domain from email addresses.