C语言判断字符串中是否有/
时间: 2024-01-19 07:02:28 浏览: 73
C语言判断字符串是否以str2开头代码
可以使用C语言中的字符串处理函数`strchr()`来判断字符串中是否包含某个字符。
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "hello/world";
char *ptr = strchr(str, '/');
if (ptr != NULL) {
printf("字符串中包含字符 '/' \n");
} else {
printf("字符串中不包含字符 '/' \n");
}
return 0;
}
```
上面的代码中,使用`strchr()`函数查找字符'/'是否在字符串中出现。如果出现,`strchr()`函数返回该字符在字符串中的指针,否则返回NULL。
阅读全文