命名空间
变体
操作

wcscspn

来自 cppreference.com
< c‎ | string‎ | wide
在头文件 <wchar.h> 中定义
size_t wcscspn( const wchar_t* dest, const wchar_t* src );
(自 C95 起)

返回指向 dest 的宽字符串的最大初始段的长度,该段仅包含指向 src 的宽字符串中未找到的字符。

内容

[编辑] 参数

dest - 指向要分析的以空字符结尾的宽字符串的指针
src - 指向包含要搜索的字符的以空字符结尾的宽字符串的指针

[编辑] 返回值

仅包含指向 src 的字符字符串中未找到的字符的最大初始段的长度

[编辑] 示例

#include <locale.h>
#include <wchar.h>
 
int main(void)
{
    wchar_t dest[] = L"白猫 黑狗 甲虫";
    /*                      └───┐   */
    const wchar_t *src = L"甲虫,黑狗";
 
    const size_t len = wcscspn(dest, src);
    dest[len] = L'\0'; /* terminates the segment to print it out */
 
    setlocale(LC_ALL, "en_US.utf8");
    wprintf(L"The length of maximum initial segment is %td.\n"
            L"The segment is \"%ls\".\n", len, dest);
}

输出

The length of maximum initial segment is 3.
The segment is "白猫 ".

[编辑] 参考

  • C11 标准 (ISO/IEC 9899:2011)
  • 7.29.4.5.2 wcscspn 函数 (p: 435-436)
  • C99 标准 (ISO/IEC 9899:1999)
  • 7.24.4.5.2 wcscspn 函数 (p: 381-382)

[编辑] 参见

(C95)
返回仅包含在另一个宽字符串中找到的宽字符的最大初始段的长度
of only the wide characters found in another wide string
(函数) [编辑]
在另一个宽字符串中查找一个宽字符串中任何宽字符的第一个位置
(函数) [编辑]
C++ 文档 for wcscspn