在C语言中,可以使用库函数strstr()来查找字符串中的特定字符或子字符串。strstr()函数的原型为:
char *strstr(const char *haystack, const char *needle);
该函数的两个参数分别是源字符串和要查找的字符串,如果查找成功,则返回查找到的子字符串的首地址;如果查找失败,则返回NULL。
#include <stdio.h> #include <string.h> int main() { char *str = "This is a test string"; char *substr = strstr(str, "test"); if (substr != NULL) { printf("substr: %s\n", substr); } else { printf("Not found!\n"); } return 0; }
上面的示例代码中,strstr()函数会在源字符串中查找是否存在子字符串“test”,如果存在,则返回该子字符串的首地址,并打印出子字符串的内容;如果不存在,则返回NULL,并打印出“Not found!”。
使用C语言查找字符串中的特定字符或子字符串,可以使用strstr()函数,但是在使用时需要注意以上几点。
本文链接:http://task.lmcjl.com/news/5920.html