Namespaces
Variants
Views
Actions

std::strrchr

From cppreference.com
< cpp‎ | string‎ | byte
Revision as of 14:07, 15 June 2012 by P12bot (Talk | contribs)

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 *strrchr( const char *str, int ch );
</td>

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

<td class="t-dcl-nopad">
      char *strrchr(       char *str, int ch );
</td>

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

Finds the last occurrence of the character ch in the byte string pointed to by str.

Contents

Parameters

str - pointer to the null-terminated byte string to be analyzed
ch - character to search for

Return value

Pointer to the found character in str, or NULL if no such character is found.

Example

See also

Template:cpp/string/byte/dcl list strchrTemplate:cpp/string/byte/dcl list strpbrk
C documentation for strrchr