命名空间
变体
操作

std::wcscspn

来自 cppreference.com
< cpp‎ | string‎ | wide
在头文件中定义 <cwchar>
std::size_t wcscspn( const wchar_t* dest, const wchar_t* src );

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

内容

[编辑] 参数

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

[编辑] 返回值

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

[编辑] 示例

以下输出使用 clang (libc++) 获得。

#include <cwchar>
#include <iostream>
#include <locale>
 
int main()
{
    wchar_t dest[] = L"白猫 黑狗 甲虫";
    //                      └───┐
    const wchar_t* src = L"甲虫,黑狗";
 
    const std::size_t len = std::wcscspn(dest, src);
    dest[len] = L'\0'; // terminates the segment to print it out
 
    std::wcout.imbue(std::locale("en_US.utf8"));
    std::wcout << L"The length of maximum initial segment is " << len << L".\n";
    std::wcout << L"The segment is \"" << dest << L"\".\n";
}

可能的输出

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

[编辑] 另请参见

返回由另一个宽字符串中找到的宽字符组成的最大初始段的长度
在另一个宽字符串中找到一个宽字符串中的任何宽字符的第一个位置
(函数) [编辑]
在另一个宽字符串中找到一个宽字符串中的任何宽字符的第一个位置
(函数) [编辑]
C 文档 for wcscspn