比较字符串不区分大小写

int compareAb(const char* dst,const char* src){数组 unsigned char s_tolowerTable[256]; for(int i = 0; i < 256; ++i)    //初始化不分大小写的数组     s_tolowerTable[i] = (unsigned char)tolower(i); //不区分大小写进行比较 知道彻底匹
相关文章
相关标签/搜索