在字符串中查找子字符串

时间:2013-11-09 21:11:10

标签: c

在C方法中是否存在用于查找字符串中的子字符串的内容?

如果没有,如何有效地解决这个问题?

在循环中? c中的正确语法是什么?

const char subString[] = { "car", "blue", "red"};
char String[] = "I love red color and i hate blue color";

for .... String lenght... {

      printf("I found subString");

}

1 个答案:

答案 0 :(得分:5)

对于空终止的C字符串:

strstr()