shithub: mc

ref: 8d54eba9360a95c0ae4a3676fe9bbc9d347b998f
dir: /test/regex-capture.myr/

View raw version
use "testmatch.use"

const main = {
	testmatch("A(.*)", "Abc")
	testmatch("A(.*)e", "Abcde")
	testmatch("A(b(.*)d)e", "Abcde")
}