std::tolower<div class="t-tr-text">(Std :: locale)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">(std::locale)</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div>
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. |
| Défini dans l'entête <locale>
|
||
| template< class charT > charT tolower( charT ch, const locale& loc ); |
||
Convertit le
ch caractère en minuscule si possible, en utilisant les règles de conversion prévues par facette std::ctype l'endroit donné de .Original:
Converts the character
ch to lowercase if possible, using the conversion rules specified by the given locale's std::ctype facet.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
| ch | - | caractère
Original: character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| loc | - | locale
Original: locale 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
Renvoie la forme de minuscules
ch si l'on est inscrit dans la localisation, sinon retourner ch inchangé .Original:
Returns the lowercase form of
ch if one is listed in the locale, otherwise return ch unchanged.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] Notes
Seulement 1:1 mappage de caractères peut être effectuée par cette fonction, par exemple, la lettre majuscule grecque Σ 'a deux formes minuscules, en fonction de la position dans un mot: «σ» et «ς». Un appel à std::tolower ne peut pas être utilisé pour obtenir la forme correcte minuscules dans cette affaire .
Original:
Only 1:1 character mapping can be performed by this function, e.g. the Greek uppercase letter 'Σ' has two lowercase forms, depending on the position in a word: 'σ' and 'ς'. A call to std::tolower cannot be used to obtain the correct lowercase form in this case.
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] Mise en œuvre possible
template< class charT > charT tolower( charT ch, const std::locale& loc ) { return std::use_facet<std::ctype<charT>>(loc).tolower(ch); } |
[modifier] Exemple
| This section is incomplete Reason: no example |
[modifier] Voir aussi
| convertit un caractère en majuscules en utilisant la facette ctype d'un lieu Original: converts a character to uppercase using the ctype facet of a locale The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction générique) | |
| convertit un caractère en minuscule Original: converts a character to lowercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
| convertit le caractère large en minuscules Original: converts a wide character to lowercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |