xref: /freebsd/contrib/one-true-awk/testdir/t.re1a (revision 5956d97f4b3204318ceb6aa9c77bd0bc6ea87a41)
1BEGIN { r1 = "[a-cg-j1-3]"
2	r2 = "[^aeiou]"
3}
4
5$0 ~ r1	{ print $0 " matches /[a-cg-j1-3]/" }
6$0 ~ r2	{ print $0 " matches /[^aeiou]/" }
7