赞
踩
**C 库函数 - strstr()
C 库函数 char *strstr(const char *haystack, const char *needle) 在字符串 haystack 中查找第一次出现字符串 needle 的位置,不包含终止符 ‘\0’
const char haystack[20] = “00000B”;
const char needle[10] = “000B”;
char *ret;
ret = strstr(haystack, needle);
printf(“子字符串是: %s\n”, ret);**
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。