find_first_not_of
时间: 2023-08-19 15:17:18 浏览: 179
Exam_09_38.rar_find_first_not_of
find_first_not_of()函数是用来在一个字符串中查找第一个不属于指定字符集合的字符的位置。它与find_first_of()函数的功能相反。\[1\]该函数会从字符串的前面往后面搜索,直到找到第一个不属于指定字符集合的字符,并返回其位置。如果找不到符合条件的字符,则返回string::npos。\[3\]下面是一个使用find_first_not_of()函数的示例代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string s = "hello world";
string chars = "abcdefghijklmnopqrstuvwxyz";
int pos = s.find_first_not_of(chars); // 在s中查找第一个不属于字母表的字符
cout << pos << endl; // 输出结果为:5
return 0;
}
```
在上述代码中,我们定义了一个字符串s和一个字符集合chars,然后使用find_first_not_of()函数在字符串s中查找第一个不属于字母表的字符的位置。由于字符'l'是字母表中的字符,所以函数返回的位置是5。
#### 引用[.reference_title]
- *1* *2* *3* [C++中的find函数用法](https://blog.csdn.net/qq_51271013/article/details/116170964)[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^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文