regex_regex_findall_with_positions
Find all regex matches in a string with their start and end positions, capture groups, and named groups. Enables precise pattern-based extraction and analysis.
Instructions
[regex] Return all matches with their start/end positions and groups. Returns list of {match, start, end, groups, named_groups}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes | ||
| text | Yes | ||
| flags | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |