std::wcspbrk
来自 cppreference.com
定义在头文件 <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 | - | 指向要分析的以 null 结尾的宽字符串的指针 |
src | - | 指向包含要搜索的字符的以 null 结尾的宽字符串的指针 |
[编辑] 返回值
指向 dest 中第一个字符的指针,该字符也存在于 src 中,如果不存在这样的字符,则返回一个空指针。
[编辑] 备注
名称代表“宽字符字符串指针断点”,因为它返回指向第一个分隔符(“断点”)字符的指针。
[编辑] 示例
运行此代码
#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 文档 for wcspbrk
|