strspn、 wcsspn、 _mbsspn、 _mbsspn_l
傳回第一個字元的索引不屬於一組字元的字串。
重要
_mbsspn 和 _mbsspn_l 不能用於 Windows 執行階段執行的應用程式。如需詳細資訊,請參閱 CRT 函式不支援使用 /ZW。
size_t strspn(
const char *str,
const char *strCharSet
);
size_t wcsspn(
const wchar_t *str,
const wchar_t *strCharSet
);
size_t _mbsspn(
const unsigned char *str,
const unsigned char *strCharSet
);
size_t _mbsspn_l(
const unsigned char *str,
const unsigned char *strCharSet,
_locale_t locale
);
參數
str
從中搜尋的 NULL 結尾字串。strCharSet
null 結尾字元集。locale
使用的地區設定。
傳回值
傳回指定完全包含在 strCharSet字元的子字串長度的整數值是 str*。如果 str 是一個字元開始不是 strCharSet,* 函式會傳回 0。
備註
strspn 函式會傳回不屬於集合在 strCharSet中字元的第一個字元在 str 中的索引。 搜尋不包含結束的 NULL 字元。
wcsspn 和 _mbsspn 都是 strspn**.**寬字元和多位元組字元版本wcsspn 引數是寬字元字串;這些 _mbsspn 是多位元組字元字串。 _mbsspn 會驗證其參數。 如果 str 或 strCharSet 是NULL,不正確的參數叫用處理常式,如 參數驗證 中所述。 如果允許繼續執行, _mbspn 會設定 errno 為 EINVAL 並回傳 0 。 strspn 和 wcsspn 並不驗證它們的參數。 這三個函式其餘部分的運作相同。
輸出值受地區設定的LC_CTYPE 分類設定所影響。如需詳細資訊,請參閱 setlocale 。 這些函式沒有以 _l 後綴的版本在這些地區相依的行為上使用目前的地區設定,而以 _l 後綴版本除了它們會使用傳入的地區設定參數之外運作相同。 如需詳細資訊,請參閱地區設定。
泛用文字常式對應
TCHAR.H 常式 |
未定義 _UNICODE & _MBCS |
已定義 _MBCS |
已定義 _UNICODE |
---|---|---|---|
_tcsspn |
strspn |
_mbsspn |
wcsspn |
N/A |
N/A |
_mbsspn_l |
N/A |
需求
程序 |
必要的標頭檔 |
---|---|
strspn |
<string.h> |
wcsspn |
<string.h> 或 <wchar.h> |
_mbsspn, _mbsspn_l |
<mbstring.h> |
如需其他相容性資訊,請參閱入門介紹中的 相容性 (Compatibility) 。
範例
// crt_strspn.c
// This program uses strspn to determine
// the length of the segment in the string "cabbage"
// consisting of a's, b's, and c's. In other words,
// it finds the first non-abc letter.
//
#include <string.h>
#include <stdio.h>
int main( void )
{
char string[] = "cabbage";
int result;
result = strspn( string, "abc" );
printf( "The portion of '%s' containing only a, b, or c "
"is %d bytes long\n", string, result );
}
.NET Framework 對等用法
請參閱
參考
_strspnp、_wcsspnp、_mbsspnp、_mbsspnp_l
strcspn、 wcscspn、 _mbscspn、 _mbscspn_l
strncat、 _strncat_l、 wcsncat、 wcsncat_l、 _mbsncat _mbsncat_l
strncmp、 wcsncmp、 _mbsncmp、 _mbsncmp_l
strncpy、 _strncpy_l、 wcsncpy、 _wcsncpy_l、 _mbsncpy、 _mbsncpy_l
_strnicmp、 _wcsnicmp、 _mbsnicmp、 _strnicmp_l、 _wcsnicmp_l、 _mbsnicmp_l