summaryrefslogtreecommitdiffstats
path: root/contrib/awk/test/splitwht.awk
blob: 6163d72e210b471e2b1dcc97f59f49f19c5b7739 (plain)
1
2
3
4
5
6
7
BEGIN {
	str = "a   b\t\tc d"
	n = split(str, a, " ")
	print n
	m = split(str, b, / /)
	print m
}
OpenPOWER on IntegriCloud