在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
对象,因此我们需要将其赋值给一个变量或直接使用。