我正在重构一些遗留代码,这些遗留代码使用带有longs字符串的printf
(没有任何实际格式化)来打印出看起来像这样的纯文本表标题:
| Table | Column | Header |
目前正在制作如下:
printf("| Table | Column | Header |");
我想用 1 :
的代码生成上面的代码outputStream << "|" << std::setw(10) << std::center << "Table"
<< "|" << std::setw(10) << std::center << "Column"
<< "|" << std::setw(9) << std::center << "Header"
<< "|" << std::endl;
由于<iomanip>
包含流操作符std::left
,std::right
和std::internal
而未编译,但似乎没有std::center
。在标准C ++库中是否有一种干净的方法可以做到这一点,还是我必须手动计算必要的间距?
1 尽管这比C代码更冗长,但由于printf
语句的数量和无效的数量,从长远来看它将更加冗长在他们的字符串中重复。它也将更具可扩展性和可维护性。
答案 0 :(得分:13)
在C ++ 20中,您将可以使用std::format
来做到这一点:
outputStream << std::format("|{:^10}|{:^10}|{:^9}|\n",
"Table", "Column", "Header");
输出:
| Table | Column | Header |
在此期间,您可以使用the {fmt} library,std::format
是基于。 {fmt}还提供了print
功能,使此操作变得更加轻松和高效(godbolt):
fmt::print("|{:^10}|{:^10}|{:^9}|\n", "Table", "Column", "Header");
免责声明:我是{fmt}和C ++ 20 std::format
的作者。
答案 1 :(得分:9)
这是一个完成你想要的帮助类:
#include <string>
#include <iostream>
#include <iomanip>
template<typename charT, typename traits = std::char_traits<charT> >
class center_helper {
std::basic_string<charT, traits> str_;
public:
center_helper(std::basic_string<charT, traits> str) : str_(str) {}
template<typename a, typename b>
friend std::basic_ostream<a, b>& operator<<(std::basic_ostream<a, b>& s, const center_helper<a, b>& c);
};
template<typename charT, typename traits = std::char_traits<charT> >
center_helper<charT, traits> centered(std::basic_string<charT, traits> str) {
return center_helper<charT, traits>(str);
}
// redeclare for std::string directly so we can support anything that implicitly converts to std::string
center_helper<std::string::value_type, std::string::traits_type> centered(const std::string& str) {
return center_helper<std::string::value_type, std::string::traits_type>(str);
}
template<typename charT, typename traits>
std::basic_ostream<charT, traits>& operator<<(std::basic_ostream<charT, traits>& s, const center_helper<charT, traits>& c) {
std::streamsize w = s.width();
if (w > c.str_.length()) {
std::streamsize left = (w + c.str_.length()) / 2;
s.width(left);
s << c.str_;
s.width(w - left);
s << "";
} else {
s << c.str_;
}
return s;
}
只需拨打centered("String")
即可使用,如下所示:
int main(int argc, char *argv[]) {
std::cout << "|" << std::setw(10) << centered("Table")
<< "|" << std::setw(10) << centered("Column")
<< "|" << std::setw(9) << centered("Header") << "|"
<< std::endl;
}
答案 2 :(得分:4)
没有std::center
操纵者。我担心你必须自己做。您可以编写辅助函数来计算给定宽度和字符串的空间,以减少工作量。
这是辅助函数的样子。它需要一些工作才能提高效率等等。
string helper(int width, const string& str) {
int len = str.length();
if(width < len) { return str; }
int diff = width - len;
int pad1 = diff/2;
int pad2 = diff - pad1;
return string(pad1, ' ') + str + string(pad2, ' ');
}
答案 3 :(得分:3)
我担心你必须手动完成。但事实并非如此 如果你使用字符串很难。类似的东西:
std::string
centered( std::string const& original, int targetSize )
{
assert( targetSize >= 0 );
int padding = targetSize - checked_cast<int>( original.size() );
return padding > 0
? std::string( padding / 2, ' ' )
+ original
+ std::string( targetSize - (padding / 2), ' ' )
: original;
}
应该这样做。
答案 4 :(得分:0)
这仅适用于那些不需要对代码进行任何额外更改并且不包括像我这样的任何新库的人。
上面给出的许多答案都需要新的帮助程序类或额外的库,但有一个简单的 hack 代替,不需要任何额外的更改。 您可以将宽度除以 2 并在要打印的元素的任一侧添加 setw() 方法。 作为问题的解决方案:
outputStream << "|" << std::setw(5) << "Table" << std::setw(5)
<< "|" << std::setw(5) << "Column" << std::setw(5)
<< "|" << std::setw(5) << "Header" << std::setw(5)
<< "|" << std::endl;
上面的代码将完成工作。
输出:
| Table | Column | Header |