在C++中,可以使用`substr`函数来获取字符串的子串。`substr`函数的语法如下:
string substr (size_t pos = 0, size_t len = npos) const;
其中,`pos`参数表示子串的起始位置,`len`参数表示子串的长度。如果未提供`len`参数,默认情况下将返回从起始位置到字符串的末尾的子串。
以下是一些示例用法:
#include
#include
int main() {
std::string str = "Hello, World!";
std::string sub1 = str.substr(7); // 从位置7开始到字符串末尾的子串
std::cout << sub1 << std::endl; // 输出: "World!"
std::string sub2 = str.substr(7, 5); // 从位置7开始的长度为5的子串
std::cout << sub2 << std::endl; // 输出: "World"
return 0;
}
需要注意的是,`substr`函数返回的是一个新的`string`对象,表示提取的子串。