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