I'm not sure this is the intended output:
import RegexBuilder
let s = "aaaaaaaaaa"
let rx = Regex {
Repeat(0...1) { "a" }
}
s.firstMatch(of: rx) // ["aa"]
(eager) Repeat
with ranges grabs one symbol more than requested. Should I file a bug?
Version 14.0 beta (14A5228q)
swift -version
swift-driver version: 1.55.1 Apple Swift version 5.7 (swiftlang-5.7.0.113.202 clang-1400.0.16.2)