shithub: trueawk

ref: fcc0e7b0f8eb8bdaf909b03f5b4d0f0833cf4292
dir: /bugs-fixed/rstart-rlength.awk/

View raw version
BEGIN {
	str="\342\200\257"
	print length(str)
	match(str,/^/)
	print RSTART, RLENGTH	
	match(str,/.+/)
	print RSTART, RLENGTH
	match(str,/$/)
	print RSTART, RLENGTH
}