xref: /freebsd/contrib/one-true-awk/bugs-fixed/rstart-rlength.awk (revision 7c31cdfa408a4ebce7a3e10d29056a15c28bc092)
1BEGIN {
2	str="\342\200\257"
3	print length(str)
4	match(str,/^/)
5	print RSTART, RLENGTH
6	match(str,/.+/)
7	print RSTART, RLENGTH
8	match(str,/$/)
9	print RSTART, RLENGTH
10}
11