共用方式為


strcoll、wcscoll、_mbscoll、_strcoll_l、_wcscoll_l、_mbscoll_l

使用目前的地區設定或指定的 LC_COLLATE 轉換狀態分類來比較字串。

重要

_mbscoll 和 _mbscoll_l 不能用於在 Windows 執行階段執行的應用程式。如需詳細資訊,請參閱 /ZW 不支援 CRT 函式

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 為 NULL 或包含定序序列的網域之外之寬字元程式碼,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