Difference between revisions of "cpp/string/wide/wcscspn"
From cppreference.com
m (Text replace - "{{example cpp" to "{{example") |
(+see c) |
||
Line 14: | Line 14: | ||
===Return value=== | ===Return value=== | ||
− | + | The length of the maximum initial segment that contains only characters not found in the character string pointed to by {{tt|src}} | |
− | + | ||
===Example=== | ===Example=== | ||
Line 28: | Line 27: | ||
{{dcl list template | cpp/string/wide/dcl list wcsspn}} | {{dcl list template | cpp/string/wide/dcl list wcsspn}} | ||
{{dcl list template | cpp/string/wide/dcl list wcspbrk}} | {{dcl list template | cpp/string/wide/dcl list wcspbrk}} | ||
+ | {{dcl list see c | c/string/wide/wcscspn}} | ||
{{dcl list end}} | {{dcl list end}} |
Revision as of 06:51, 14 May 2012
Template:cpp/string/wide/sidebar
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
|