C / C ++中的strcoll()
该函数strcoll()用于使用特定于语言环境的整理序列比较两个字符串。
它返回-
零,当两个字符串相同时,
当第一个字符串大于其他字符串时,大于零值
当第一个字符串小于其他字符串时,小于零值。
这是strcoll()C语言的语法,
int strcoll(const char *first_string, const char *second_string);
这是strcoll()C语言的示例,
示例
#include <stdio.h>
#include <string.h>
int main () {
const char s1[] = "Helloworld";
const char s2[] = "Blank";
char *result;
result = strcoll(s1, s2);
if(result > 0)
printf("String s1 is greater than string s2");
else if(result < 0)
printf("String s1 is less than string s2");
else
printf(" Strings are not same");
return(0);
}输出结果
String s1 is greater than string s2
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志