Files
Odin/tests/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-06-12 13:30:00 +02:00
2024-08-08 21:15:59 +02:00
2024-09-10 14:52:20 -04:00
2024-08-28 19:53:20 +02:00
2024-08-18 20:14:14 -04:00
2025-02-12 19:13:16 +01:00
2025-03-21 19:14:15 -04:00
2024-06-29 18:51:28 +01:00
2024-06-02 14:47:09 -04:00
2025-02-12 19:13:16 +01:00
2025-02-27 18:54:38 -05:00
2025-02-12 19:24:27 +01:00
2025-04-06 14:19:14 +02:00
2024-06-02 14:47:09 -04:00
2024-11-20 15:33:20 -08:00
2024-06-08 16:43:45 -04:00