std::char_traits::find
De 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 ); |
||
Recherches pour
a
caractère dans les caractères count
premiers pas dans une chaîne de caractères pointée par p
.Original:
Searches for character
a
within the first count
characters within character string pointed to by p
.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.
Sommaire |
[modifier] Paramètres
p | - | pointeur vers une chaîne de caractères à rechercher
Original: pointer to a character string to search The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
count | - | le nombre de caractères à analyser
Original: the number of characters to analyze The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
a | - | le caractère à rechercher
Original: the character to search for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier] Retourne la valeur
Un pointeur vers le premier caractère de la valeur
a
withing la chaîne de caractères donnée .Original:
A pointer to the first character of value
a
withing the given character string.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.
[modifier] Exceptions
(Aucun)
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.
[modifier] Complexité
Linéaire .
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.