shithub: trueawk

ref: d11b2d1a36e92518cea81c717169e2c97e8450d9
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
}