在C++中,可以使用std::stringstream
或者printf
函数来格式化字符串。
使用std::stringstream
:
#include#include int main() { std::stringstream ss; int num = 10; float f = 3.14; std::string str = "Hello"; ss << "Number: " << num << ", Float: " << f << ", String: " << str; std::string formatted_str = ss.str(); std::cout << formatted_str << std::endl; return 0; }
使用printf
函数:
#include#include int main() { int num = 10; float f = 3.14; std::string str = "Hello"; char buffer[100]; std::sprintf(buffer, "Number: %d, Float: %.2f, String: %s", num, f, str.c_str()); std::string formatted_str = buffer; std::cout << formatted_str << std::endl; return 0; }
这样就可以通过std::stringstream
或者printf
函数来格式化字符串。