Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$ echo 'From: "Sumone @home" <home@me.com>
From: malformed <doh>' |
gawk '{ print gensub(/.*:[ "]+([^"]+| *<).*<([^>]+).*/, "\\1 -+- \\2", 1) }'
[b]Sumone @home -+- home@me.com
malformed -+- doh[/b]
$ echo XabF XcdF XdeF | gawk '{ print gensub(/X([^X]+)F/, "\\1", 2) }'
[b]XabF cd XdeF[/b]
$ echo XabF XcdF XdeF | gawk '{ print gensub(/X([^X]+)F/, "\\1", "g") }'
[b]ab cd de[/b]
$ echo "<html><head><blah foo=bar>yeah<..>" | gawk '{
match($0, /head><([^ ]+) ([^=]+)=([^>]+)>([^<]+)/, Arr)
printf "%s (%s->%s) == %s\n", Arr[1], Arr[2], Arr[3], Arr[4]
}'
[b]blah (foo->bar) == yeah[/b]