我正在寻找类似于prettytable但在C++中的库
http://code.google.com/p/prettytable/
我知道如何使用printf或iostream生成自己的代码。但是,我想知道是否有一个用于此的库。
我只对将此ASCII表写入控制台感兴趣。
最好是这样的:
std::vector<std::string> headers;
headers.push_back("My Awesome Header 1");
headers.push_back("My Awesome Header 2");
headers.push_back("My Awesome Header 3");
PrettyTablePrinter ptp;
ptp.SetHeaders(headers);
// Set some other options here
ptp.AddRow(data[0]);
ptp.AddRow(data[1]);
ptp.AddRow(data[2]);
ptp.Print(&std::cout);
最佳答案
由于我没有找到好的C++解决方案,因此我为大家编写了一个
https://github.com/dattanchu/bprinter/wiki
关于c++ - 漂亮地用C++打印表格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4471714/