std::basic_string::find
De cppreference.com
|
|
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. |
<metanoindex/>
<tbody> </tbody> size_type find( const basic_string& str, size_type pos = 0 ) const; |
(1) | |
size_type find( const CharT* s, size_type pos, size_type count ) const; |
(2) | |
size_type find( const CharT* s, size_type pos = 0 ) const; |
(3) | |
size_type find( CharT ch, size_type pos = 0 ) const; |
(4) | |
Trouve la première chaîne égale à la séquence de caractères donnée. La recherche commence à
pos, à savoir la sous-chaîne trouvée ne doit pas commencer dans une position précédant pos .Original:
Finds the first substring equal to the given character sequence. Search begins at
pos, i.e. the found substring must not begin in a position preceding pos.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.
1)
Trouve la première chaîne égale à
str . Original:
Finds the first substring equal to
str. 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.
2)
Trouve la première chaîne à la hauteur des caractères
count premiers de la chaîne de caractères pointée par s. s peuvent inclure des caractères nuls .Original:
Finds the first substring equal to the first
count characters of the character string pointed to by s. s can include null characters.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.
3)
Trouve la première chaîne égale à la chaîne de caractères pointée par