std::match_results::format
|
|
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. |
| template< class OutputIt > OutputIter format( OutputIt out, |
(1) | (depuis C++11) |
| template< class OutputIt, class ST, class SA > OutputIter format( OutputIt out, |
(2) | (depuis C++11) |
| template< class ST, class SA > std::basic_string<char_type,ST,SA> |
(3) | (depuis C++11) |
| string_type format( const char_type* fmt_s, std::regex_constants::match_flag_type flags = |
(4) | (depuis C++11) |
flags déterminer les spécificateurs de format et de séquences d'échappement sont reconnus .flags determine which format specifiers and escape sequences are recognized.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.
[fmt_first, fmt_last). La séquence de caractères résultante est copié dans out .[fmt_first, fmt_last). The resulting character sequence is copied to out.You can help to correct and verify the translation. Click here for instructions.
fmt. La séquence de caractères résultante est copié dans out .fmt. The resulting character sequence is copied to out.You can help to correct and verify the translation. Click here for instructions.
fmt fmt_s respectivement. La séquence de caractères résultante est copié dans une chaîne nouvellement construit, qui est retourné .fmt and fmt_s respectively. The resulting character sequence is copied to a newly constructed string, which is returned.You can help to correct and verify the translation. Click here for instructions.
Sommaire |
[modifier] Paramètres
| fmt_begin, fmt_end | - | des pointeurs vers une plage de caractères définissant la séquence de caractères de format
Original: pointers to a range of characters defining the format character sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| fmt | - | Chaîne définissant la séquence de caractères de format
Original: string defining the format character sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| fmt_s | - | pointeur vers une chaîne de caractères terminée par NULL définir la séquence de caractères de format
Original: pointer to a null-terminated character string defining the format character sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| out | - | itérateur où copier la séquence de caractères résultant d'
Original: iterator where to copy the resulting character sequence to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| flags | - | Type de masque de bits indiquant les spécificateurs de format et séquences d'échappement qui sont reconnus
Original: bitmask type specifying which format specifiers and escape sequences are recognized
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| Type requirements | ||||||
-OutputIt must meet the requirements of OutputIterator.
| ||||||
[modifier] Retourne la valeur
outYou can help to correct and verify the translation. Click here for instructions.
[modifier] Exceptions
You can help to correct and verify the translation. Click here for instructions.
[modifier] Exemple
| This section is incomplete Reason: no example |