c++判断字符串中是否包含某个字符
时间: 2023-10-17 14:25:45 浏览: 152
可以使用字符串的find函数来判断字符串中是否包含某个字符。find函数返回字符在字符串中第一次出现的位置,如果找不到则返回npos。
示例代码如下:
```c++
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str = "hello world";
char c = 'o';
if(str.find(c) != string::npos)
cout << "包含" << endl;
else
cout << "不包含" << endl;
return 0;
}
```
输出结果为"包含"。
相关问题
判断字符串中是否包含某个字符串c++
可以使用C++中的string类的find函数来判断字符串中是否包含某个字符串。该函数返回被查找字符串在原字符串中第一次出现的位置,如果没有找到则返回string::npos。
示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "hello world";
string subStr = "world";
if (str.find(subStr) != string::npos) {
cout << "包含子串" << subStr << endl;
} else {
cout << "不包含子串" << subStr << endl;
}
return 0;
}
```
输出结果为:
```
包含子串world
```
c++判断字符串是否包含某个字符串
在C语言中,可以使用`strstr`函数来判断一个字符串是否包含另一个字符串。`strstr`函数会在源字符串中查找目标字符串,并返回第一次出现的位置指针。如果找不到目标字符串,则返回`NULL`。
下面是使用C风格字符串的示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char a[] = "abcdefghigklmn";
char b[] = "def";
char c[] = "123";
if (strstr(a, b) == NULL) {
printf("not found\n");
} else {
printf("found\n");
}
if (strstr(a, c) == NULL) {
printf("not found\n");
} else {
printf("found\n");
}
return 0;
}
```
同样地,你也可以使用C++的`string`类来进行字符串的查找操作。下面是使用C++风格字符串的示例代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string a = "abcdefghigklmn";
string b = "def";
string c = "123";
if (a.find(b) == string::npos) {
cout << "not found" << endl;
} else {
cout << "found" << endl;
}
if (a.find(c) == string::npos) {
cout << "not found" << endl;
} else {
cout << "found" << endl;
}
return 0;
}
```
阅读全文