コマンドラインでHTMLをCSV変換する方法

dtとddタグで作成された表形式のデータを、コマンドラインツールでCSV変換します。
$ curl -s http://doramahjong.com/tournament/ | hxnormalize -x | hxselect -s '\n' -c "table.catagoryTable" "dl" | lynx -stdin --dump  | sed -e 's/^\s\+//' | awk 'BEGIN { FS="\n"; RS="" } { print $1 "," $2 "," $3 }'
風花雪月杯,2016年11月22日 18:00:00,107 Read more about コマンドラインでHTMLをCSV変換する方法

コピペが困難なHTMLの表を Google Sheets でインポートする方法

スプレッドシートを作成またはオープンします。https://www.google.com/sheets

セルに式を入力します。

入力例:

=ImportHtml("https://en.wikipedia.org/wiki/Comparison_shopping_website", "table", 0)
 Read more about コピペが困難なHTMLの表を Google Sheets でインポートする方法

Pages