strcoll、wcscoll、_mbscoll、_strcoll_l、_wcscoll_l、_mbscoll_l

使用当前区域设置或指定的 LC_COLLATE 转换状态类别,比较字符串。

重要

_mbscoll 和 _mbscoll_l 不能在 Windows 运行时执行的应用程序中使用。有关详细信息,请参见 CRT functions not supported with /ZW(CRT 函数不支持使用/ZW)。

int strcoll(
   const char *string1,
   const char *string2 
);
int wcscoll(
   const wchar_t *string1,
   const wchar_t *string2 
);
int _mbscoll(
   const unsigned char *string1,
   const unsigned char *string2 
);
int _strcoll_l(
   const char *string1,
   const char *string2,
   _locale_t locale 
);
int wcscoll_l(
   const wchar_t *string1,
   const wchar_t *string2,
   _locale_t locale 
);
int _mbscoll_l(
   const unsigned char *string1,
   const unsigned char *string2,
   _locale_t locale 
);

参数

  • string1, string2
    要比较的 null 终止的字符串。

  • locale
    要使用的区域设置。

返回值

这些函数都返回一个值,该值指示 string1 的关系值设置为 string2*,* 如下所示。

返回值

string1 与 string2 的关系

< 0

string1 小于 string2

0

string1 等于 string2

> 0

string1 大于 string2

这些函数在错误时都返回 _NLSCMPERROR。 若要使用 _NLSCMPERROR,请包括 STRING.H 或 MBSTRING.H。 如果 string1 或 string2 包含排序序列的字段之外的宽字符代码,wcscoll 会失败。 发生错误时,wcscoll 可以将 errno 设置为 EINVAL。 为检查调用wcscoll发生的错误,设置errno 为0, 然后在调用wcscoll后检查 errno。

备注

每个函数基于当前正在使用的代码页执行 string1 和 string2 不区分大小写的比较。 只有在当前代码页中的字符集排序和字典字符存在差异时,这些函数才能使用,这些差异是字符串比较感兴趣的。

所有这些函数都验证其参数。 如果 string1 或 string2 是 null 指针,或者,如果 count 比 INT_MAX大,无效参数调用处理程序,如 参数验证 所述。 如果允许执行继续,则这些函数返回 _NLSCMPERROR 并将 errno 设置为 EINVAL。

两个字符串的比较是区域设置相关的操作,因为每个区域设置具有不同的字符排序规则。 这些没有_l 后缀的函数版本为该区域设置相关的行为使用当前线程区域设置;有 _l 后缀的版本与没有后缀的对应函数相同,只不过它们使用通过的区域设置作为参数而不是当前区域设置。 有关详细信息,请参阅区域设置

一般文本例程映射

TCHAR.H 例程

未定义 _UNICODE & _MBCS

已定义 _MBCS

已定义 _UNICODE

_tcscoll

strcoll

_mbscoll

wcscoll

要求

例程

必需的标头

strcoll

<string.h>

wcscoll

<wchar.h>, <string.h>

_mbscoll, _mbscoll_l

<mbstring.h>

_strcoll_l

<string.h>

_wcscoll_l

<wchar.h>, <string.h>

有关兼容性的更多信息,请参见兼容性

.NET Framework 等效项

System::String::Compare

请参见

参考

区域设置

字符串操作 (CRT)

strcoll 函数

localeconv

_mbsnbcoll、_mbsnbcoll_l、_mbsnbicoll、_mbsnbicoll_l

setlocale、_wsetlocale

strcmp、wcscmp、_mbscmp

_stricmp、_wcsicmp、_mbsicmp、_stricmp_l、_wcsicmp_l、_mbsicmp_l

strncmp、wcsncmp、_mbsncmp、_mbsncmp_l

_strnicmp、_wcsnicmp、_mbsnicmp、_strnicmp_l、_wcsnicmp_l、_mbsnicmp_l

strxfrm、wcsxfrm、_strxfrm_l、_wcsxfrm_l