Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/string/wide/wcspbrk"

From cppreference.com
< cpp‎ | string‎ | wide
m (Text replace - "dcl list str" to "dcl list wcs")
m (Text replace - "cpp/string/narrow/dcl" to "cpp/string/wide/dcl")
Line 32: Line 32:
 
===See also===
 
===See also===
 
{{dcl list begin}}
 
{{dcl list begin}}
{{dcl list template | cpp/string/narrow/dcl list wcscspn}}
+
{{dcl list template | cpp/string/wide/dcl list wcscspn}}
{{dcl list template | cpp/string/narrow/dcl list wcschr}}
+
{{dcl list template | cpp/string/wide/dcl list wcschr}}
 
{{dcl list end}}
 
{{dcl list end}}

Revision as of 11:46, 25 November 2011

Template:cpp/string/wide/sidebar Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <cstring>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
const char* strpbrk( const char* dest, const char* str );
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
      char* strpbrk(       char* dest, const char* str );
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end

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

Contents

Parameters

dest - pointer to the null-terminated character string to be analyzed
src - pointer to the null-terminated character string that contains the characters to search for

Return value

pointer to the first character in dest, that is also in str, or Template:cpp if no such character exists.

Example

Template:example cpp

See also

Template:cpp/string/wide/dcl list wcscspnTemplate:cpp/string/wide/dcl list wcschr