Regular Expression Rule (regex) โ
Extracts data using regular expression patterns.
| Field | Description | Required |
|---|---|---|
pattern | Regular expression pattern to match | โ Yes |
Example: โ
json
{
"type": "regex",
"source_column": "email",
"destination_column": "domain",
"pattern": "@([^.]+\\.[^.]+)$"
}Behavior: Extracts the domain from email addresses.