命名空间
变体
操作

std::wcspbrk

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

在宽字符串 dest 中查找第一个出现在宽字符串 src 中的字符。

目录

[编辑] 参数

dest - 指向待分析的空终止宽字符串的指针
src - 指向包含要搜索的字符的空终止宽字符串的指针

[编辑] 返回值

指向 dest 中第一个同时存在于 src 中的字符的指针,如果不存在这样的字符,则返回空指针。

[编辑] 注意

这个名称代表“宽字符字符串指针中断(wide character string pointer break)”,因为它返回一个指向第一个分隔符(“中断”)字符的指针。

[编辑] 示例

#include <cwchar>
#include <iomanip>
#include <iostream>
 
int main()
{
    const wchar_t* str = L"Hello world, friend of mine!";
    const wchar_t* sep = L" ,!";
 
    unsigned int cnt = 0;
    do
    {
        str = std::wcspbrk(str, sep); // find separator
        std::wcout << std::quoted(str) << L'\n';
        if (str)
            str += std::wcsspn(str, sep); // skip separator
        ++cnt; // increment word count
    } while (str && *str);
 
    std::wcout << L"There are " << cnt << L" words\n";
}

输出

" world, friend of mine!"
", friend of mine!"
" of mine!"
" mine!"
"!"
There are 5 words

[编辑] 参阅

返回由另一个字节字符串中找到的字符组成的最大初始段的长度
仅当另一个宽字符串中找到宽字符时
(函数) [编辑]
在宽字符串中查找宽字符的首次出现
(函数) [编辑]
查找分隔符集中任何字符的第一个位置
(函数) [编辑]
C 文档 关于 wcspbrk