wcsstr

来自cppreference.com
< c‎ | string‎ | wide

 
 
 
NULL结尾的宽字符串
功能
原文:
Functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
字符操作
原文:
Character manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
转换为数字格式
原文:
Conversions to numeric formats
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
字符串操作
原文:
String manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
数组操作
原文:
Array manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
wmemcpy
wmemmove
wmemcmp
wmemchr
wmemset
 
在头文件 <wchar.h> 中定义
const wchar_t* wcsstr( const wchar_t* dest, const wchar_t* src );
wchar_t* wcsstr(       wchar_t* dest, const wchar_t* src );
发现宽字符串中第一次出现的宽字符串src指出,dest.
原文:
Finds the first occurrence of the wide string src in the wide string pointed to by dest.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

dest -
检查null结尾的宽字符串的指针指向
原文:
pointer to the null-terminated wide string to examine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
src -
以NULL结尾的宽要搜索的字符串指针
原文:
pointer to the null-terminated wide string to search for
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

dest,或NULL中找到的子串的第一个字符的指针,如果没有这样的子被发现。如果src指向一个空字符串,dest返回.
原文:
Pointer to the first character of the found substring in dest, or NULL if no such substring is found. If src points to an empty string, dest is returned.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 示例

[编辑] 另请参阅

发现一个宽字符在宽字符串中首次出现的
原文:
finds the first occurrence of a wide character in a wide string
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
发现一个宽字符在宽字符串中最后一次出现
原文:
finds the last occurrence of a wide character in a wide string
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]