#include<iostream> #include<cmath> #include<algorithm> #include<cstdio> #include<cstring> #include<vector> using namespace std; int main() { int i; string str1 = "qwertyuuoedsdi"; string str2="uu"; char c = 'q'; //从串str1中查找时str2,返回str1中首个字符在str1中的下标 i = str1.find(str2); printf("%d\n",i); //从str1的第5个字符开始查找str2,返回str1中首个字符在str1中的下标 i = str1.find(str2,5); printf("%d\n",i); //在str1中查找字符c并返回str1中第一个查找到的下标 i = str1.find(c); printf("%d\n",i); //从str1中的第3个字符开始查找"dsjk"的前两个字符,返回首个字符在str1中的下标值; i = str1.find("dsjk",3,2 ); printf("%d\n",i); return 0; }
思路:此处需要用到string库中的
find
函数与npos
参数。
string::npos参数: npos是一个常数,用来表示不存在的位置,npos定义的类型是: string::size_type。npos定义为:
static const size_type npos=-1;
find函数的返回值是整数,假如字符串存在包含关系,其返回值必定不等于npos,但如果字符串不存在包含关系,那么返回值一定是npos。所以,不难想到用if判断语句来实现!
if(s1.find(s2)!=string::npos){ cout<<"YES"<<endl; }else{ cout<<"No"<<endl; }
详细请移步,这里:
C++中string::npos的一些用法总结