regex_regex_findall
Find all non-overlapping regex matches in a string. Returns a list of matches or captured groups. For simple pattern matching without position data.
Instructions
[regex] Return all non-overlapping matches as a list. If the pattern has groups, returns list of group strings. Simple and fast — use regex_findall_with_positions for positions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes | ||
| text | Yes | ||
| flags | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |