wcspbrk

wcspbrk

Defined in header <wchar.h>
wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str );
(since C95)

Finds the first character in wide string pointed to by dest, that is also in wide string pointed to by str.

Parameters

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

Return value

Pointer to the first character in dest, that is also in str, or NULL if no such character exists.

Example

References

  • C11 standard (ISO/IEC 9899:2011):
    • 7.29.4.5.3 The wcspbrk function (p: 436)
  • C99 standard (ISO/IEC 9899:1999):
    • 7.24.4.5.3 The wcspbrk function (p: 382)

See also

(C95)
returns the length of the maximum initial segment that consists
of only the wide chars not found in another wide string
(function)
(C95)
finds the first occurrence of a wide character in a wide string
(function)
C++ documentation for wcspbrk

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/c/string/wide/wcspbrk

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部