JavaScript/table2csv のバックアップ(No.26)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- JavaScript/table2csv へ行く。
- 1 (2012-08-01 (水) 15:00:01)
- 2 (2012-08-03 (金) 17:44:52)
- 3 (2012-08-06 (月) 18:27:48)
- 4 (2012-08-07 (火) 16:45:58)
- 5 (2012-08-14 (火) 18:26:57)
- 6 (2012-10-27 (土) 05:23:46)
- 7 (2012-11-23 (金) 04:35:28)
- 8 (2013-03-15 (金) 17:38:40)
- 9 (2013-04-01 (月) 22:19:41)
- 10 (2013-04-19 (金) 20:45:03)
- 11 (2013-04-23 (火) 15:16:43)
- 12 (2013-06-09 (日) 14:43:51)
- 13 (2013-06-09 (日) 23:05:32)
- 14 (2013-06-10 (月) 03:48:10)
- 15 (2013-06-10 (月) 07:35:48)
- 16 (2013-06-10 (月) 20:53:30)
- 17 (2014-07-11 (金) 18:24:10)
- 18 (2014-09-04 (木) 01:36:09)
- 19 (2014-09-04 (木) 20:19:24)
- 20 (2014-09-05 (金) 20:26:52)
- 21 (2014-11-08 (土) 01:41:12)
- 22 (2014-12-05 (金) 02:25:05)
- 23 (2015-01-03 (土) 18:59:41)
- 24 (2015-01-29 (木) 15:33:27)
- 25 (2015-11-20 (金) 15:13:32)
- 26 (2016-06-24 (金) 16:27:52)
- 27 (2017-10-27 (金) 16:26:13)
- 28 (2019-03-12 (火) 18:18:13)
- title: JavaScriptでHtmlのtable要素をCSVに変換する keywords: [JavaScript, Bookmarklet, HTML, table, CSV, TSV] author: aterai pubdate: 2012-07-25 description: Htmlのtable要素をCSV、TSVに変換するBookmarklet
概要
Html
の<table>
要素をCSV
(character-separated values
)に変換するBookmarklet
です。colspan
、rowspan
で結合するセルがある場合は、同文字列を挿入しています。
- 区切り文字はタブ(
TSV
) - ブックマークレットなどに登録して表(
<table>
要素)のあるページで実行 <table>
要素をダブルクリックすると、その内容をCSV
に変換して<textarea>
に文字列として挿入- 子要素に
<table>
が存在する場合は、ダブルクリックに反応しない <table role="presentation">
や<table border="0">
のような、レイアウト目的の<table>
は無視する
- 子要素に
<textarea>
をダブルクリックすると、元の<table>
に戻る<thead>
や<tfoot>
の扱いは適当(例えば、<tbody>
の前にある<tfoot>
が、そのまま先の行としてCSV
になる)<capthion>
は無視<colgroup>
のspan
属性には未対応
ソースコード
Bookmarklet
- 名前(任意)
table2csv
- アドレス(
YUI Compressor
で圧縮)javascript:(function(){function f(w){var s=w.getElementsByTagName("tr"),p,o,n,m,u,t,v,h,r=[],q=s.length,g;for(p=0;p<q;p++){r[p]=r[p]||[];v=s.item(p).cells;g=v.length;for(o=0;o<g;o++){h=v.item(o);t=h.innerHTML.replace(/<.*?>/mg,"").replace(/\t/g," ").replace(/(^\s+)|(\s+$)/g,"").replace(/\"/,'""');u=0;while(r[p][o+u]!=null){u++}r[p][o+u]=t;for(n=1;n<h.colSpan;n++){r[p][o+u+n]=t}for(m=1;m<h.rowSpan;m++){r[p+m]=r[p+m]||[];for(n=0;n<h.colSpan;n++){r[p+m][o+u+n]=t}}}}return e(r)}function e(o){var m=o.length,n=o[0].length,h="",j,i,g;for(i=0;i<m;i++){j="";for(g=0;g<n;g++){j+='\t"'+o[i][g]+'"'}if(j!=""){j=j.substring(1,j.length)}h+=j+"\n"}return h}var d=function(h){var g=document.createElement("textarea");g.value=f(this);g.style.width="80%";g.style.height="240px";g.originalTable=this;this.tx=g;this.parentNode.replaceChild(this.tx,this);g.addEventListener("dblclick",function(i){this.parentNode.replaceChild(this.originalTable,this)},false)},c=document.getElementsByTagName("table"),b=0,a=c.length;for(;b<a;b++){if(c[b].getElementsByTagName("table").length>0){continue}if(c[b].getAttribute("role")==="presentation"||(c[b].getAttribute("border")==="0")){continue}c[b].addEventListener("dblclick",d,false)}}());
- アドレス(テスト用にtable2csv.user.jsを読み込む)
javascript:(function(){var s=document.createElement('script');s.charset='UTF-8';s.src='http://ateraimemo.com/data/javascript/table2csv.user.js?'+(new Date()).getTime();document.body.appendChild(s)}());
- アドレス(テスト用にtable2csv.min.jsを読み込む)
javascript:(function(){var s=document.createElement('script');s.charset='UTF-8';s.src='http://ateraimemo.com/data/javascript/table2csv.min.js?'+(new Date()).getTime();document.body.appendChild(s)}());
ユーザースクリプト、拡張機能
FireFox
Greasmonkey
などのユーザースクリプトとしてtable2csv.user.js
をドロップして追加
Chorme
などdev
版などで拡張機能タブにtable2csv.user.js
をドロップして追加
テスト用table
rowspan
,colspan
Bookmarklet
を実行、または拡張機能として追加した後、以下の表をダブルクリックするとCSV
文字列に変換A B C D 1 2 3 4 5 6 7
"A" "B" "C" "D" "1" "2" "3" "3" "4" "5" "5" "6" "7" "5" "5" "6"
- footer
ファイル数 サイズ 総行数 コメント行 実行数 空行数 コメント率 footer 合計 169 5291916 174370 77045 84804 12521 平均 31313 1031 455 501 74 44.13%
参考リンク
- CSV from HTML tables Bookmarklet | Bookmarklet Search Engine
- CodeKeep Snippet : Convert html table to csv (JavaScript)