xref: /netbsd-src/external/historical/nawk/dist/testdir/t.re3 (revision e7ac2a8b5bd66fa2e050809de09a075c36a7014d)
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