Re: [GnuWin32-Users] help with regexp in gawk file

2009-04-28 Thread Kees Zeelenberg
g 28 april 2009 0:26 Aan: Onderwerp: [GnuWin32-Users] help with regexp in gawk file > > I am trying to remove all words in one list from another list of words. > If I explicitly enumerate the words to remove everything works fine: > gsub(/to /, "",text); > g

[GnuWin32-Users] help with regexp in gawk file

2009-04-27 Thread Hane, Christopher A
I am trying to remove all words in one list from another list of words. If I explicitly enumerate the words to remove everything works fine: gsub(/to /, "",text); gsub(/in /, "",text); gsub(/or /, "",text); but if I try to build the list of words in an array no substitutions are