Menu

CSV like text to HTML

Viktar Karpach

This command converts comma or tab separated text to html table. For example:

OrderId,Product Count,Total
101,2,$15.95
102,1,$5.95
103,18,$17.05

Becomes:

<table class="orderDetails">
<tr><th>OrderId</th><th>Product Count</th><th>Total</th></tr>
<tr><td>101</td><td>2</td><td>$15.95</td></tr>
<tr><td>102</td><td>1</td><td>$5.95</td></tr>
<tr><td>103</td><td>18</td><td>$17.05</td></tr>
</table>

And here is how it would look like in any browser:

OrderIdProduct CountTotal
1012$15.95
1021$5.95
10318$17.05

Below are options used for above conversions. All options are self explanatory.

CSV like text to HTML


Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.