在C++20中引入了std::format
函數,可以用來進行字符串格式化。使用std::format
函數進行字符串格式化的基本語法如下:
std::string result = std::format(format_string, args...);
其中,format_string
是一個包含格式說明符和占位符的字符串,args...
是要格式化的數據。例如,可以使用{}
作為占位符,然后在args...
中提供相應的參數來替換占位符。
下面是一個示例,演示如何使用std::format
函數進行字符串格式化:
#include <iostream>
#include <format>
int main() {
std::string name = "Alice";
int age = 30;
std::string result = std::format("My name is {} and I am {} years old.", name, age);
std::cout << result << std::endl;
return 0;
}
在本示例中,我們使用std::format
函數將name
和age
插入到字符串中的占位符中,從而得到最終的格式化字符串。輸出結果為:
My name is Alice and I am 30 years old.
需要注意的是,std::format
函數返回一個std::string
對象,因此我們需要將其賦值給一個變量或直接使用。