aboutsummaryrefslogtreecommitdiff
path: root/testdir/t.re1a
blob: 613d24de63404a806a01842641068bc6e020fb2b (plain)
1
2
3
4
5
6
BEGIN { r1 = "[a-cg-j1-3]"
	r2 = "[^aeiou]"
}

$0 ~ r1	{ print $0 " matches /[a-cg-j1-3]/" }
$0 ~ r2	{ print $0 " matches /[^aeiou]/" }