Difference between revisions of "cpp/string/wide/wcscspn"
From cppreference.com
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, ru, zh) |
m (Shorten template names. Use {{lc}} where appropriate.) |
||
Line 8: | Line 8: | ||
===Parameters=== | ===Parameters=== | ||
− | {{ | + | {{par begin}} |
− | {{ | + | {{par | dest | pointer to the null-terminated wide string to be analyzed}} |
− | {{ | + | {{par | src | pointer to the null-terminated wide string that contains the characters to search for}} |
− | {{ | + | {{par end}} |
===Return value=== | ===Return value=== | ||
Line 24: | Line 24: | ||
===See also=== | ===See also=== | ||
− | {{ | + | {{dsc begin}} |
− | {{ | + | {{dsc inc | cpp/string/wide/dcl list wcsspn}} |
− | {{ | + | {{dsc inc | cpp/string/wide/dcl list wcspbrk}} |
− | {{ | + | {{dsc see c | c/string/wide/wcscspn}} |
− | {{ | + | {{dsc end}} |
[[de:cpp/string/wide/wcscspn]] | [[de:cpp/string/wide/wcscspn]] |
Revision as of 19:58, 31 May 2013
Defined in header <cwchar>
|
||
std::size_t wcscspn( const wchar_t* dest, const wchar_t* src ); |
||
Returns the length of the maximum initial segment of the wide string pointed to by dest
, that consists of only the characters not found in wide string pointed to by src
.
Contents |
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
The length of the maximum initial segment that contains only characters not found in the character string pointed to by src
Example
This section is incomplete Reason: no example |
See also
C documentation for wcscspn
|