Pretty print a table in C++

前端 未结 8 1031
眼角桃花
眼角桃花 2020-12-28 09:25

I am looking for a library similar to prettytable but in C++

http://code.google.com/p/prettytable/

I know how to generate one myself using either printf or i

8条回答
  •  北海茫月
    2020-12-28 09:54

    It's pretty simple to write an html to create tables in C++, you don't need a library for that. On the other hand if you want table output on console, it can be done, but it's not that easy, especially if you need to do vertical alignment, breaking strings, etc.

提交回复
热议问题