javascript:(function(){ var t=document.getElementById('cf-detail-table'), r=t.rows.length, c=t.rows[0].cells.length-1, s='', a,f,x,w; for(var i=0;i<r;i++){ for(var j=0;j<c;j++){ a=t.rows[i]; if(i>0&&j==0){ if((a.cells[j].innerHTML).indexOf('target')>-1){x=1;}else{x=0;} }else if(i>0&&j==1){ x=(a.innerHTML).match(/\d{4}\/\d{2}\/\d{2}/); }else if(i>0&&j==3){ if((a.cells[j].innerText).indexOf('(')>-1){f=1;}else{f=0;} x=(a.cells[j].innerText).replace(/\,|\s+|\D+$/g,''); }else if(i>0&&j==8){ if(f==1){x=1;}else{x=0;} }else{ x=(a.cells[j].innerText).trim(); } s+='"'+x+'"'; if(j<c-1){s+=',';}else{s+='<br>';} } } w=window.open(); w.document.open(); w.document.write(s); w.document.close(); })();