Linux字符比较函数:
strpbrk()
strcasecmp()
strspn()
#if _MSC_VER #define strcasecmp _stricmp //strcasecmp 找不到标识符 #endif #include <iostream> #include <string.h> using namespace std; int main() { //====================== strpbrk (比较的字符串,被比较的字符串)======================= //函数原型:extern char *strpbrk(char *str1, char *str2) //参数说明:str1待比较的字符串,str2为指定被搜索的字符串。 //所在库名:#include <string.h> //函数功能:比较字符串str1和str2中是否有相同的字符,如果有,则返回该字符在str1中的位置的指针。 //返回说明:返回指针,搜索到的字符在str1中的索引位置的指针。 char str1[] = "hellostringEFG"; char str2[] = "stringABC"; char *str3 = new char[100]; memset(str3, '