在 C++ 中,`substr` 函数用于提取字符串的子串。它有两种常用的用法:
1. `substr(pos, len)`: 提取从位置 `pos` 开始的长度为 `len` 的子串。
- `pos`:指定提取子串的起始位置,位置从 0 开始。
- `len`:指定提取子串的长度。如果不指定 `len`,则默认提取从 `pos` 到字符串末尾的所有字符。
2. `substr(pos)`: 提取从位置 `pos` 开始到末尾的子串。
以下是使用 `substr` 函数的示例代码:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
// 提取从位置 7 开始的子串
std::string sub1 = str.substr(7);
std::cout << "sub1: " << sub1 << std::endl; // 输出 "World!"
// 提取从位置 7 开始的长度为 5 的子串
std::string sub2 = str.substr(7, 5);
std::cout << "sub2: " << sub2 << std::endl; // 输出 "World"
return 0;
}
在上面的示例中,我们使用了字符串的 `substr` 函数来提取指定位置的子串,并将结果打印输出。
需要注意的是,C++ 中的 `substr` 函数返回的是一个新的 `std::string` 对象,而不是原始字符串的引用或指针。
想练习个题请戳这里文章来源:https://www.toymoban.com/news/detail-667118.html
Ancient Prophesy - 洛谷文章来源地址https://www.toymoban.com/news/detail-667118.html
到了这里,关于c++中string的substr函数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!