I'm using the match() function in gawk to grab links out of an HTML file.. the regular expression is something like this:
match($0, /(<a href=\")([^\"]+)/, arr)
I don't seem to be able to use the "/g" option at the end to get multiple matches per line though?