您好,登錄后才能下訂單哦!
在 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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。