~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/splitdef.awk

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 10:09:56 UTC
  • Revision ID: git-v1:bc70de7b3302d5a81515b901cae376b8b51d2004
Tags: gawk-3.1.0
Move to gawk-3.1.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
BEGIN {
 
2
        data = "abc:easy:as:one:two:three"
 
3
        FS = ":"
 
4
        FIELDWIDTHS = "3 1 4 1 2 1 3 1 3 1 5"
 
5
        n = split(data, a)
 
6
        printf "n = %d, a[3] = %s\n", n, a[3]
 
7
}