C库函数 - strstr() C库函数 - strspn() C库函数 - strtok() C库函数 - strstr() #include <stdio.h> #include <string.h> int main () { const char haystack[20] = "codingdict"; const char needle[10] = "Point"; char *ret; ret = strstr(haystack, needle); printf("The substring is: %s\n", ret); return(0); } C库函数 - strspn() C库函数 - strtok()