regex_match
Tests input against pattern (Go's regexp package: RE2 syntax, not PCRE — no backreferences or lookaround; use inline flags like (?i) for case-insensitive matching). Returns the full match and captured groups.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | ||
| pattern | Yes | RE2 syntax |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| match | No | ||
| groups | No | ||
| matches | Yes |