共用方式為


_strnicmp、、_wcsnicmp_mbsnicmp_strnicmp_l、、_wcsnicmp_l_mbsnicmp_l

比較兩個字串的指定數目的字元,而不考慮大小寫。

重要

在 Windows 執行階段中執行的應用程式中無法使用 _mbsnicmp_mbsnicmp_l。 如需詳細資訊,請參閱 CRT functions not supported in Universal Windows Platform apps (通用 Windows 平台應用程式中不支援的 CRT 函式)。

語法

int _strnicmp(
   const char *string1,
   const char *string2,
   size_t count
);
int _wcsnicmp(
   const wchar_t *string1,
   const wchar_t *string2,
   size_t count
);
int _mbsnicmp(
   const unsigned char *string1,
   const unsigned char *string2,
   size_t count
);
int _strnicmp_l(
   const char *string1,
   const char *string2,
   size_t count,
   _locale_t locale
);
int _wcsnicmp_l(
   const wchar_t *string1,
   const wchar_t *string2,
   size_t count,
   _locale_t locale
);
int _mbsnicmp_l(
   const unsigned char *string1,
   const unsigned char *string2,
   size_t count,
   _locale_t locale
);

參數

string1, string2
以 Null 結束的待比較字串。

count
要比較的字元數。

locale
要使用的地區設定。

傳回值

表示子字串之間的關聯性,如下所示。

傳回值 描述
< 0 string1 子字串小於 string2 子字串。
0 string1 子字串等於 string2 子字串。
> 0 string1 子字串大於 string2 子字串。

在參數驗證錯誤上,這些函式會傳回 _NLSCMPERROR,其定義於 <string.h 和 <mbstring.h>> 中。

備註

_strnicmp式最多會比較 和string2的第一count個字元string1。 系統會將每個字元轉換成小寫來執行比較,而不考慮大小寫。 _strnicmp 是不區分大小寫版本的 strncmp。 如果在比較 count 個字元之前任一字串中已達結束的 null 字元,則會結束比較。 如果字串相等,當比較 count 個字元之前任一字串中已達結束的 null 字元時,較短的字串為較小者。

ASCII 數據表中 91 到 96 的字元('['、'\'、']'、'^'、'_' 和 ''') 會評估為小於任何字母字元。 這個順序與 stricmp 的順序相同。

_wcsnicmp_mbsnicmp 分別是 _strnicmp 的寬字元版本和多位元組字元版本。 的自變數 _wcsnicmp 是寬字元字串。 的自變數 _mbsnicmp 是多位元組位元元字串。 _mbsnicmp 根據目前的多位元組字碼頁來辨識多位元組字元序列,並在發生錯誤時傳回 _NLSCMPERROR。 如需詳細資訊,請參閱 代碼頁。 除此之外,這三個函式的行為相同。 這些函式會受到地區設定的影響,沒有 _l 後置字元的版本會使用目前的地區設定進行與地區設定相關的行為,而有 _l 後置字元的版本則會改用傳入的 locale。 如需詳細資訊,請參閱 Locale

這些函式全都會驗證它們的參數。 string1如果 或 string2 為 Null 指標,則會叫用無效的參數處理程式,如參數驗證中所述。 如果允許繼續執行,這些函式會傳回 _NLSCMPERROR,並將 errno 設為 EINVAL

根據預設,此函式的全域狀態會限定於應用程式。 若要變更此行為,請參閱 CRT 中的全域狀態

一般文字常式對應

TCHAR.H 常式 _UNICODE_MBCS 未定義 _MBCS 已定義 _UNICODE 已定義
_tcsncicmp _strnicmp _mbsnicmp _wcsnicmp
_tcsnicmp _strnicmp _mbsnbicmp _wcsnicmp
_tcsncicmp_l _strnicmp_l _mbsnicmp_l _wcsnicmp_l

需求

常式 必要的標頭
_strnicmp, _strnicmp_l <string.h>
_wcsnicmp, _wcsnicmp_l <string.h> 或 <wchar.h>
_mbsnicmp, _mbsnicmp_l <mbstring.h>

如需相容性詳細資訊,請參閱相容性

範例

請參閱 strncmp 的範例。

另請參閱

字串操作
strcat、 、 wcscat_mbscat
strcmp、 、 wcscmp_mbscmp
strcpy、 、 wcscpy_mbscpy
strncat、、_strncat_lwcsncat_wcsncat_l、、_mbsncat_mbsncat_l
strncmp、 、 wcsncmp_mbsncmp_mbsncmp_l
strncpy、、_strncpy_lwcsncpy_wcsncpy_l、、_mbsncpy_mbsncpy_l
strrchr、 、 wcsrchr_mbsrchr_mbsrchr_l
_strset、、_strset_l_wcsset_wcsset_l、、_mbsset_mbsset_l
strspn、 、 wcsspn_mbsspn_mbsspn_l