xref: /netbsd-src/external/historical/nawk/dist/testdir/t.re3 (revision dd3ee07da436799d8de85f3055253118b76bf345)
1{	r1 = $1
2	r2 = $1 ":"
3}
4
5length(r1) && $0 ~ r1	{ print $0 " matches " r1 }
6length(r1) && $0 ~ r2	{ print $0 " matches " r2 }
7