Files
Odin/core
Jeroen van Rijn cdc56dc691 Add iterator for core:text/regex.
Usage:
```odin
haystack := `xxfoobarxfoobarxx`
pattern  := `f(o)ob(ar)`

it := regex.create_iterator(haystack, pattern, {.Global}) or_return
defer regex.destroy(it)

for capture in regex.match(&it) {
	fmt.println(capture)
}
```
2025-04-06 14:19:14 +02:00
..
2024-09-09 18:49:13 +02:00
2024-12-01 11:54:53 +11:00
2025-02-04 21:27:44 +01:00
2025-03-31 10:51:02 +01:00
2025-01-10 12:22:18 +00:00
2025-03-27 10:36:40 -04:00
2025-01-18 22:23:44 +01:00
2024-02-08 15:15:16 +00:00
2025-04-05 19:25:39 +02:00
2025-01-10 07:07:40 +01:00
2025-04-06 14:19:14 +02:00