~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/gensub2.awk

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 11:47:02 UTC
  • Revision ID: git-v1:315bd501ca696bc3e3c938b4604d8dac7a6f512f
Tags: gawk-3.1.5
Move to gawk 3.1.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
BEGIN {
 
2
        print gensub("x","y",2,"xx")
 
3
        print gensub("x","y","2","xx")
 
4
        print gensub("x","y","a","xx")
 
5
}