std::wcschr
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
const wchar_t* strchr( const wchar_t* str, wchar_t ch ); |
||
wchar_t* strchr( wchar_t* str, wchar_t ch ); |
||
。发现宽字符串中第一次出现的宽字符
ch
指出,str
. 原文:
Finds the first occurrence of the wide character
ch
in the wide string pointed to by str
. [编辑] 。参数。
str | - | 。 null结尾的宽字符串的指针进行分析。
原文: pointer to the null-terminated wide string to be analyzed |
ch | - | 。宽字符搜索。
|
===。 返回值。===
。
str
,或NULL找到的字符的指针,如果没有这样的字符被找到。原文:
Pointer to the found character in
str
, or NULL if no such character is found.[编辑] 。为例。
本章尚未完成 原因:暂无示例 |
[编辑] 。另请参阅。
发现一个宽字符在宽字符串中最后一次出现 原文: finds the last occurrence of a wide character in a wide string (函数) | |
发现任何宽字符的第一个位置,在一个宽的字符串,在另一个宽字符串 原文: finds the first location of any wide character in one wide string, in another wide string (函数) | |
C documentation for wcschr
|