shithub: mc

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