std::wcscspn
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
std::size_t wcscspn( const wchar_t* dest, const wchar_t* src ); |
||
。返回起始段宽字符串的最大长度指出
dest
包含的字符不宽字符串所指向的src
.原文:
Returns the length of the maximum initial segment of the wide string pointed to by
dest
, that consists of only the characters not found in wide string pointed to by src
.[编辑] 。参数。
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 |
===。 返回值。===
。最大的起始段,只包含未找到的字符中的字符串所指向
src
的长度。原文:
The length of the maximum initial segment that contains only characters not found in the character string pointed to by
src
[编辑] 。为例。
本章尚未完成 原因:暂无示例 |
[编辑] 。另请参阅。
返回的长度的最大的初始段,由 只有宽字符宽字符串在另一个发现 原文: returns the length of the maximum initial segment that consists of only the wide characters found in another wide string (函数) | |
发现任何宽字符的第一个位置,在一个宽的字符串,在另一个宽字符串 原文: finds the first location of any wide character in one wide string, in another wide string (函数) | |
C documentation for wcscspn
|