-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
$ echo 'a b' | gawk '{ gsub(/[ \t]+/, "x"); print; }'
axb
$ echo 'a b' | gawk '{ gsub("[ \t]+", "x"); print; }'
axb
$ echo 'a b' | gawk '{ gsub("[\s]+", "x"); print; }'
gawk: cmd. line:1: warning: escape sequence `\s' treated as plain `s'
a b
$ echo 'a b' | gawk '{ gsub(/[\s]+/, "x"); print; }'
a b
$ echo 'a b' | gawk '{ gsub(/\s+/, "x"); print; }'
axbReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request