shithub: mc

ref: 5782871df2ffdc7d41c42762ef3878acc9529b43
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")
}