在 C++ 中,有多种方法可以格式化字符串。以下是一些建议的方法:
std::ostringstream
:#include <sstream>
#include <string>
int main() {
int a = 123;
float b = 456.789f;
std::string s = "hello";
std::ostringstream ss;
ss << "整数: "<< a << ", 浮点数: "<< b << ", 字符串: " << s;
std::string formatted_string = ss.str();
return 0;
}
std::string_format
(C++20 起可用):#include <format>
#include <string>
int main() {
int a = 123;
float b = 456.789f;
std::string s = "hello";
std::string formatted_string = std::string_format("整数: {}, 浮点数: {}, 字符串: {}", a, b, s);
return 0;
}
fmt
库(需要安装 fmt
库):#include <fmt/core.h>
#include <string>
int main() {
int a = 123;
float b = 456.789f;
std::string s = "hello";
fmt::string_view formatted_string = fmt::format("整数: {}, 浮点数: {}, 字符串: {}", a, b, s);
return 0;
}
这些方法都可以用来格式化字符串,你可以根据自己的需求和喜好选择合适的方法。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。