randallf said
Quote:
I shall clarify, what I am looking for is something that will turn the above, which is a single table row, into a tab delimited row of the same data.
I copied the source HTML (thanks for attaching it) to file C:/Table.html, then ran the following script in biterscripting.
Code:
scr SS_WebPageToCSV.txt page("C:/Table.html")
I got the following output.
Quote:
, T3h Customer / 901094 , 1403 , 4.6 , 4.6 , 4.6 , 4.7 , 4.6 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , , ,
Is that what you looking for ? If so, take a look at the WebPageToCSV script at
http://www.biterscripting.com/SS_WebPageToCSV.html . I have been using it for a while, and it extract a table from any web page (also local file) in all table cases I have encountered. You can also specify a table number using number(5), etc.
The script outputs in CSV (Comma Separated Values). I understand you want TSV (Tab Separated Values). Just
change comma (,) in the script to tab (\t).