@@ -124,6 +124,25 @@ pub fn SizedRegex(ops: comptime_int, char_sets: comptime_int) type {
124
124
}
125
125
}
126
126
127
+ /// Match a regex pattern in `haystack` after `pos`. Returns a `Match`
128
+ /// if the pattern is found.
129
+ pub fn matchPos (regex : * const SizedRegexT , pos : usize , haystack : []const u8 ) ? Match {
130
+ const substack = haystack [pos .. ];
131
+ if (substack .len == 0 ) return null ;
132
+ const maybe_matched = regex .matchInternal (substack );
133
+ if (maybe_matched ) | m | {
134
+ const m1 = pos + m [0 ];
135
+ const m2 = pos + m [1 ];
136
+ return Match {
137
+ .slice = haystack [m1 .. m2 ],
138
+ .start = m1 ,
139
+ .end = m2 ,
140
+ };
141
+ } else {
142
+ return null ;
143
+ }
144
+ }
145
+
127
146
/// Boolean test if the regex matches in the haystack.
128
147
pub fn isMatch (regex : * const SizedRegexT , haystack : []const u8 ) bool {
129
148
const maybe_matched = regex .matchInternal (haystack );
@@ -2119,6 +2138,7 @@ test "workshop" {
2119
2138
// printRegexString("^[a-zA-Z0-9_!#$%&.-]+@([a-zA-Z0-9.-])+$");
2120
2139
// try testMatchAll("^[a-zA-Z0-9_!#$%&.-]+@([a-zA-Z0-9.-])+$", "[email protected] ");
2121
2140
//
2141
+ try testMatchAll ("(a[bc]){3,5}ac" , "abacabacac" );
2122
2142
}
2123
2143
2124
2144
test "heap allocated regex and match" {
@@ -2167,6 +2187,14 @@ test "iteration" {
2167
2187
try expectEqual (null , r_iter .next ());
2168
2188
}
2169
2189
2190
+ test "matchPos" {
2191
+ const regex = Regex .compile ("abcd" ).? ;
2192
+ const matched = regex .matchPos (4 , "abcdabcd" ).? ;
2193
+ try expectEqual (4 , matched .start );
2194
+ try expectEqualStrings ("abcd" , matched .slice );
2195
+ try expectEqual (8 , matched .end );
2196
+ }
2197
+
2170
2198
test "comptime regex" {
2171
2199
const comp_regex = comptime compile ("foo+" ).? ;
2172
2200
const run_match = comp_regex .match ("foofoofoo" );
0 commit comments