std::string 中 查找 子字符串
时间: 2024-11-29 16:10:29 浏览: 4
在 C++ 的 `std::string` 类型中,查找子字符串通常通过 `find` 函数或者 `substr` 函数配合来完成。以下是两个常见操作:
1. **`find` 函数**:
- `size_t find(const string& str, size_t pos = 0) const;`
这个函数返回目标子串 "str" 在原字符串中第一次出现的位置(从 `pos` 开始计数,如果找不到则返回 `npos`)。例如:
```cpp
std::string myStr = "Hello, World!";
size_t index = myStr.find("World");
if (index != std::string::npos)
std::cout << "Found at position: " << index << std::endl;
```
2. **`substr` 函数**:
- `string substr(size_t pos = 0, size_t len = npos) const;`
可以用于获取原字符串从指定位置开始到指定长度的子串。若未提供长度,则直到字符串结束。比如:
```cpp
std::string subStr = myStr.substr(myStr.find("World") + 6); // 获取 "World!" 部分
```
注意,`find` 返回的是子串的起始位置,而 `substr` 则是从这个位置提取子串。
阅读全文