命名空间
变体
操作

std::wcsspn

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

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

内容

[编辑] 参数

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

[编辑] 返回值

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

[编辑] 示例

#include <cwchar>
#include <iostream>
#include <locale>
 
int main()
{
    wchar_t dest[] = L"白猫 黑狗 甲虫";
    const wchar_t src[] = L" 狗猫 白黑 ";
    const std::size_t len = std::wcsspn(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 6.
The segment is "白猫 黑狗 ".

[编辑] 另请参见

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