wcspbrk
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wchar.h> 中定义
|
||
const wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str ); |
||
wchar_t* wcspbrk( wchar_t* dest, const wchar_t* str ); |
||
找到的第一个字符在宽字符串中指出
dest
,这也是str
的指向宽字符串.原文:
Finds the first character in wide string pointed to by
dest
, that is also in wide string pointed to by str
.目录 |
[编辑] 参数
dest | - | null结尾的宽字符串的指针进行分析
原文: pointer to the null-terminated wide string to be analyzed |
src | - | 指针null结尾的的宽字符串包含的字符进行搜索
原文: pointer to the null-terminated wide string that contains the characters to search for |
[编辑] 返回值
dest
,这也是str
,或NULL如果不存在这样的字符的第一个字符的指针.原文:
Pointer to the first character in
dest
, that is also in str
, or NULL if no such character exists.[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
返回的长度的最大的初始段,由只有宽 不发现在另一个宽字符串 原文: returns the length of the maximum initial segment that consists of only the wide not found in another wide string (函数) | |
发现一个宽字符在宽字符串中首次出现的 原文: finds the first occurrence of a wide character in a wide string (函数) | |
C++ documentation for wcspbrk
|