source: trunk/essentials/sys-apps/gawk/test/splitwht.awk

Last change on this file was 3076, checked in by bird, 18 years ago

gawk 3.1.5

File size: 98 bytes
Line 
1BEGIN {
2 str = "a b\t\tc d"
3 n = split(str, a, " ")
4 print n
5 m = split(str, b, / /)
6 print m
7}
Note: See TracBrowser for help on using the repository browser.