[Easy Question] convert web page to csv format

Are you sure you want it in csv?

As an excel file, you can preserve all the hyperlinks. Just start highlighting from the first row(not the header) and copy/paste to Excel.

I rather like the quick links to Edgar and the financial statements.

upload_2017-1-15_0-30-49.png
 
edit the wikipedia page, copy the table minus the header, paste into a file, sed "s/|-//; s/^\t{{[^|]\+\([^}]\+\).*/\1/; /^$/d" | tr "\n" ","
 
Back
Top