std::char_traits::find
Da cppreference.com
< cpp | string | char traits
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
const CharT* find(const CharT* p, std::size_t count, CharT a ); | ||
Searches for character a
within the first count
characters within character string pointed to by p
.
Índice |
[editar]Parâmetros
p | - | pointer to a character string to search |
count | - | the number of characters to analyze |
a | - | the character to search for |
[editar]Valor de retorno
A pointer to the first character of value a
withing the given character string.
[editar]Exceções
(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar]Complexidade
Linear.
Original:
Linear.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.