/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
BEGIN {s=""; FS="n"} /<td/ { gsub(/<[^>]*>/, ""); s=(s ", " $1);} /<tr|<TR/ { print s; s="" }
URL: http://snippets.dzone.com/posts/show/3848