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
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