c-28

字符串比较

>0  s1>s2  0 s1 = s2  <0 s1<s2 

1.strcmp(char* s1, char* s2)   区分大小写

2.strncmp(char* s1,char* s2,int maxlen) 比较指定个数   区分大小写

3.stricmp(char* s1, char*s2)  不区分大小写

4.strnicmp(char*s1 , char* s2,int maxlen) 不区分大小写

猜你喜欢

转载自www.cnblogs.com/sinianxinfei/p/9202380.html
c28