Forum Moderators: phranque
infile: %csv-file.txt
outfile: %html.txt
write outfile <table>
foreach line read/lines infile [
write/append outfile <tr>
foreach field parse/all line form tab [
write/append outfile rejoin ["" <td> field </td>]
]
]
write/append outfile </table>
halt
The results to upload are in html.txt