C++string find
时间: 2023-10-04 16:07:51 浏览: 84
C++ string
C++中的字符串查找函数string find()用于在一个字符串中查找指定的子字符串,并返回子字符串的起始位置。如果找到了子字符串,返回子字符串的起始位置;如果没有找到,返回一个特殊值npos。
这个函数有两种常见的用法。第一种用法是不指定起始位置,直接在整个字符串中查找子字符串。例如,在字符串"abcabc"中查找子字符串"ab",可以使用以下代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "abcabc";
int pos = str.find("ab");
if (pos != str.npos) {
cout << pos << endl; // 运行结果是0
} else {
cout << "not find!";
}
cout << endl;
return 0;
}
```
第二种用法是指定起始位置,在指定的位置之后开始查找子字符串。例如,在字符串"aabc"中从下标为1的位置开始查找"abc",可以使用以下代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "aabc";
int pos = str.find("abc", 1);
if (pos != str.npos) {
cout << pos << endl; // 运行结果是1
} else {
cout << "not find!";
}
cout << endl;
return 0;
}
```
如果找不到子字符串,find()函数返回npos的特殊值,即4294967295(无符号32位整数的最大值)。例如,在字符串"aabc"中查找"d"时,可以使用以下代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "aabc";
int pos = str.find("d");
if (pos != str.npos) {
cout << pos << endl;
} else {
cout << "not find!"; // 运行结果是not find!
}
cout << endl;
return 0;
}
```
以上就是C++中的字符串查找函数string find()的用法和示例。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [C++ string中的find() 函数](https://blog.csdn.net/gentleman_97/article/details/122339565)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文