~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/mtchi18n2.awk

Update README.solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BEGIN {
2
 
        match("\342\200\257", /^/, m)
3
 
        print RSTART, RLENGTH
4
 
 
5
 
        match("\342\200\257", /^(a?)\u202F(b?)$/, m)
6
 
        #match("\342\200\257", /^(a?)\342\200\257(b?)$/, m)
7
 
        print RSTART, RLENGTH, m[1,"start"], m[1,"length"], m[2, "start"], m[2, "length"]
8
 
 
9
 
        match("\342\200\257", /$/, m)
10
 
        print RSTART, RLENGTH
11
 
 
12
 
        match("\342\200\257ac", /a(b?)c/, m)
13
 
        print RSTART, RLENGTH, m[1,"start"], m[1,"length"]
14
 
}