std::wcspbrk
Defined in header <cwchar> | | |
|---|---|---|
const wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str ); | | |
wchar_t* wcspbrk( wchar_t* dest, const wchar_t* str ); | | |
查找宽字符串中的第一个字符。dest,这也是用宽字符串表示的。str...
参数
dest | - | pointer to the null-terminated wide string to be analyzed |
|---|---|---|
src | - | pointer to the null-terminated wide string that contains the characters to search for |
返回值
中的第一个字符的指针。dest,这也是在str,或NULL如果不存在这样的角色。
例
另见
wcscspn | returns the length of the maximum initial segment that consists of only the wide not found in another wide string (function) |
|---|---|
wcschr | finds the first occurrence of a wide character in a wide string (function) |
c Wcspbrk文件
© cppreference.com在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com

