shithub: mc

ref: 46fa16a5b71dac736cccd372bf82d33aff913f70
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")
}