summaryrefslogtreecommitdiff
path: root/test/widesub2.awk
blob: 69383d3453e0e1521bb0388639ba569484727472 (plain)
1
2
3
4
5
6
7
8
9
BEGIN {
	Value = "abc"

	print "Before <" Value "> ", index( Value, "bc" )

	sub( /bc/, "bbc", Value )

	print "After  <" Value ">", index( Value, "bc" )
}