有一個網站可以在html表格中顯示大量數據。他們已經分頁數據,因此大約有500頁。從html頁面創建csv
在Windows中獲取這些表格中的數據並將其下載爲CSV格式的最便捷的方法是什麼?
基本上我需要編寫一個腳本,做這樣的事情,但overkilling寫在C#中,我尋找其他的解決方案,人們的網絡體驗使用:
for(i=1 to 500)
load page from http://x/page_i.html;
parse the source and get the data in table with id='data'
save results in csv
謝謝!