Regex Extraction Engine
Runs deterministic regular expression extraction with optional capture groups.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
text | text | Yes | Text |
pattern | text | Yes | Pattern |
Outputs
| Name | Type | Description |
|---|---|---|
matches | array | Matches |
work | array | Work |
Sample request
{
"text": "Call me at 555-1212",
"pattern": "(\\d{3}-\\d{4})"
}