当前位置:   article > 正文

C++中的find函数用法_c++find函数用法

c++find函数用法

 

摘要:

1.find()查找第一次出现的目标字符串(全匹配)

2.find_first_of() 查找子串中的某个字符最先出现的位置(非全匹配)

3.find_last_of() 这个函数与find_first_of()功能差不多,只不过find_first_of()是从字符串的前面往后面搜索,而         find_last_of()是从字符串的后面往前面搜索(非全匹配)

4.rfind() 反向查找字符串,即找到最后一个与子串匹配的位置(全匹配)(从前往后搜索)

5.find_first_not_of() 找到第一个不与子串匹配的位置(非全匹配)



  • 1.find()   

注:要与子串完全匹配,否则返回-1

查找第一次出现的目标字符串

  1. #include<iostream>
  2. #include<cstdio>
  3. using namespace std;
  4. int main() {
  5. string s1 = "abcdef";
  6. string s2 = "de";
  7. int ans = s1.find(s2);//在S1中查找子串S2
  8. cout << ans << endl;
  9. return 0;
  10. }
  11. //输出结果:3

 

说明:如果查找成功则输出查找到的第一个位置,否则返回-1;

 

查找从指定位置开始的第一次出现的目标字符串:

 

  1. #include <iostream>
  2. #include <cstdio>
  3. using namespace std;
  4. int main() {
  5. string s1 = "abcdef";
  6. string s2 = "de";
  7. int ans = s1.find(s2, 2);//从S1的第二个字符开始查找子串S2
  8. cout << ans << endl;
  9. return 0;
  10. }
  11. //输出结果:3

 

 

  • 2.find_first_of()

 注:不需要与子串完全匹配

查找子串中的某个字符最先出现的位置。find_first_of()不是全匹配,而find()是全匹配

  1. #include <iostream>
  2. #include <cstdio>
  3. using namespace std;
  4. int main() {
  5. string s1 = "adedef";
  6. string s2 = "dek";
  7. int ans = s1.find_first_of(s2);//在S1中查找子串S2
  8. cout << ans << endl;
  9. return 0;
  10. }
  11. //输出结果:1

其中find_first_of()也可以约定初始查找的位置:s1.find_first_of(s2, 2) ;

 

  • 3.find_last_of()

注:不需要与子串完全匹配

这个函数与find_first_of()功能差不多,只不过find_first_of()是从字符串的前面往后面搜索,而find_last_of()是从字符串的后面往前面搜索。

 

  1. #include<iostream>
  2. #include <cstdio>
  3. using namespace std;
  4. int main() {
  5. string s1 = "adedef";
  6. string s2 = "dek";
  7. int ans = s1.find_last_of(s2);//在S1中查找子串S2
  8. cout << ans << endl;
  9. return 0;
  10. }
  11. //输出结果为:4
  • 4.rfind()

注:要与子串完全匹配,否则返回-1

反向查找字符串,即找到最后一个与子串匹配的位置

  1. #include<iostream>
  2. #include <cstdio>
  3. using namespace std;
  4. int main() {
  5. string s1 = "adedekf";
  6. string s2 = "dek";
  7. int ans = s1.rfind(s2);//在S1中查找子串S2
  8. cout << ans << endl;
  9. return 0;
  10. }
  11. //输出结果为:3
  • 5.find_first_not_of()

注:不需要与子串完全匹配

找到第一个不与子串匹配的位置

  1. #include<iostream>
  2. #include <cstdio>
  3. using namespace std;
  4. int main() {
  5. string s1 = "dadedef";
  6. string s2 = "dek";
  7. int ans = s1.find_first_not_of(s2);//在S1中查找子串S2
  8. cout << ans << endl;
  9. return 0;
  10. }
  11. //输出结果:1


 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/469914
推荐阅读
相关标签
  

闽ICP备14008679号