您好,登錄后才能下訂單哦!
在 C++ 中,std::string
類有一個名為 format
的成員函數,它允許您使用類似于 Python 的格式化字符串語法來構造新字符串。format
函數的格式化占位符與 Python 的 str.format
和 C# 的 string.Format
類似,但具有其獨特的語法。
以下是 C++ std::string
類中 format
函數的一些常見格式化占位符:
%s
- 字符串格式化占位符。將替換為傳入的字符串參數。std::string s = "Hello";
std::string result = std::string("Hello, %s!").format(s);
// result = "Hello, Hello!"
%d
- 整數格式化占位符(十進制)。將替換為傳入的整數參數。int i = 42;
std::string result = std::string("The answer is %d.").format(i);
// result = "The answer is 42."
%f
- 浮點數格式化占位符。將替換為傳入的浮點數參數。默認情況下,小數點后保留 6 位數字。可以使用 .6f
來指定小數點后的位數。double d = 3.1415926535;
std::string result = std::string("Pi is approximately %f.").format(d);
// result = "Pi is approximately 3.141593."
%e
- 科學計數法表示的浮點數格式化占位符。將替換為傳入的浮點數參數,并以科學計數法表示。double d = 1.23456789e-10;
std::string result = std::string("A very small number: %e").format(d);
// result = "A very small number: 1.234568e-10"
%x
- 十六進制表示的整數格式化占位符。將替換為傳入的整數參數,并以十六進制表示。int i = 255;
std::string result = std::string("The hexadecimal value of %x is %X").format(i, i);
// result = "The hexadecimal value of ff is FF"
%o
- 八進制表示的整數格式化占位符。將替換為傳入的整數參數,并以八進制表示。int i = 10;
std::string result = std::string("The octal value of %o is %O").format(i, i);
// result = "The octal value of 12 is 12"
%c
- 字符格式化占位符。將替換為傳入的字符參數。char c = 'A';
std::string result = std::string("The ASCII value of %c is %d.").format(c, static_cast<int>(c));
// result = "The ASCII value of A is 65."
%n
- 換行符格式化占位符。在字符串中插入一個換行符。std::string result = std::string("Hello, %s!\n").format(s);
// result = "Hello, Hello!\n"
這些占位符可以組合使用,以創建更復雜的格式化字符串。例如:
int year = 2023;
int month = 10;
int day = 20;
std::string result = std::string("Today is %d/%02d/%02d.").format(day, month, year);
// result = "Today is 20/10/2023."
在這個例子中,%d
用于天,%02d
用于月份和年份(帶有前導零,如果需要的話)。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。