Highly recommended a online tools: Convert CSV to ASCII Table
It is my favorite conversion tool designed for table format, and it can convert csv into different friendly plain text tables:
1, ASCII table (mysql style)
+─────────────+─────────+───────────────────+
| 2012-05-02 | palani | My first comment |
+─────────────+─────────+───────────────────+
| 2012-05-02 | raja | My second comment |
+─────────────+─────────+───────────────────+
| 2012-05-02 | palani | My third comment |
+─────────────+─────────+───────────────────+
| 2012-05-03 | raja | My fourth comment |
+─────────────+─────────+───────────────────+
2, reStructuredText Grid table
+-------------+---------+-------------------+
| 2012-05-02 | palani | My first comment |
+=============+=========+===================+
| 2012-05-02 | raja | My second comment |
+-------------+---------+-------------------+
| 2012-05-02 | palani | My third comment |
+-------------+---------+-------------------+
| 2012-05-03 | raja | My fourth comment |
+-------------+---------+-------------------+
3, Unicode table (single line)
┌─────────────┬─────────┬───────────────────┐
| 2012-05-02 | palani | My first comment |
├─────────────┼─────────┼───────────────────┤
| 2012-05-02 | raja | My second comment |
| 2012-05-02 | palani | My third comment |
| 2012-05-03 | raja | My fourth comment |
└─────────────┴─────────┴───────────────────┘
4, Unicode table
╔═════════════╦═════════╦═══════════════════╗
║ 2012-05-02 ║ palani ║ My first comment ║
╠═════════════╬═════════╬═══════════════════╣
║ 2012-05-02 ║ raja ║ My second comment ║
║ 2012-05-02 ║ palani ║ My third comment ║
║ 2012-05-03 ║ raja ║ My fourth comment ║
╚═════════════╩═════════╩═══════════════════╝
And some other formats of plain text ASCII Table. You can also type "Force separate lines" to decide whether to express the title clearly!
Top comments (0)