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) | (C + + 11以来) |
| template< class OutputIt, class ST, class SA > OutputIter format( OutputIt out, |
(2) | (C + + 11以来) |
| template< class ST, class SA > std::basic_string<char_type,ST,SA> |
(3) | (C + + 11以来) |
| string_type format( const char_type* fmt_s, std::regex_constants::match_flag_type flags = |
(4) | (C + + 11以来) |
flagsで指定されたビットマスクは書式指定子とエスケープシーケンスが認識されているかを調べる.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)によって定義されます。結果の文字列は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内の文字によって定義されます。結果の文字列は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それぞれの文字によって定義されます。結果の文字のシーケンスが返され新しく構築された文字列にコピーされます.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.
目次 |
[編集] パラメータ
| fmt_begin, fmt_end | - | フォーマット文字シーケンスを定義する文字の範囲を指すポインタ
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 | - | 形式の文字列を定義する文字列
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 | - | フォーマット文字シーケンスを定義する、NULLで終わる文字列へのポインタ
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 | - | イテレータに結果の文字列をコピーする場所
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 | - | どの書式指定子とエスケープシーケンスを指定するビットマスク型は
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.
| ||||||
[編集] 値を返します
outYou 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.
[編集] 例
| This section is incomplete Reason: no example |