std::string是C++标准库中的字符串类,用于表示和处理字符串。它提供了许多方便的方法来操作字符串,如插入、删除、查找等。可以通过包含
下面是一些std::string的常用用法示例:
std::string str;
std::string str = "Hello, World!";
int length = str.length();
std::string str1 = "Hello";
std::string str2 = "World";
std::string result = str1 + " " + str2;
std::string str = "Hello, World!";
size_t found = str.find("World");
if (found != std::string::npos) {
// 子字符串存在
}
std::string str = "Hello, World!";
str.replace(str.find("World"), 5, "C++");
const char *cstr = str.c_str();
std::string input;
std::cin >> input;
总的来说,std::string是一个非常方便的工具,用于处理字符串操作,可以在C++中广泛使用。