大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE稳定放心使用
C++中STL里提供了许多字符串操作的函数,下面是字符串查找方面的部分函数用法简介:
1.find()
查找第一次出现的目标字符串:
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
string s1 = “abcdef”;
string s2 = “de”;
int ans = s1.find(s2) ; //在S1中查找子串S2
cout<<ans<<endl;
system(“pause”);
}
说明:如果查找成功则输出查找到的第一个位置,否则返回-1;
查找从指定位置开始的第一次出现的目标字符串:
#include<iostream>
#include<csdtio>
using namespace std;
int main(){
string s1 = “abcdef”;
string s2 = “de”;
int ans = s1.find(s2, 2) ; //从S1的第二个字符开始查找子串S2
cout<<ans<<endl;
system(“pause”);
}
2.find_first_of()
查找子串中的某个字符最先出现的位置。find_first_of()不是全匹配,而find()是全匹配
#include<iostream>
#include<csdtio>
using namespace std;
int main(){
string s1 = “adedef”;
string s2 = “dek”;
int ans = s1.find_first_of(s2) ; //在S1中查找子串S2
cout<<ans<<endl;
system(“pause”);
}
其中find_first_of()也可以约定初始查找的位置:s1.find_first_of(s2, 2) ;
3.find_last_of()
这个函数与find_first_of()功能差不多,只不过find_first_of()是从字符串的前面往后面搜索,而find_last_of()是从字符串的后面往前面搜索。
4.rfind()
反向查找字符串,即找到最后一个与子串匹配的位置
5.find_first_not_of()
找到第一个不与子串匹配的位置
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/182191.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...