std::char_traits::find
Da cppreference.com.
< cpp | string | char traits
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
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
.
Indice |
[modifica]Parametri
p | - | pointer to a character string to search |
count | - | the number of characters to analyze |
a | - | the character to search for |
[modifica]Valore di ritorno
A pointer to the first character of value a
withing the given character string.
[modifica]Eccezioni
(Nessuno)
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.
[modifica]Complessità
Lineare.
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.