vscanf, vfscanf, vsscanf
提供: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. |
| Defined in header <stdio.h>
|
||
| int vscanf( const char *format, va_list vlist ); |
(1) | (C99以来) |
| (2) | (C99以来) | |
| int vsscanf( const char *buffer, const char *format, va_list vlist ); |
(3) | (C99以来) |
さまざまなソースからデータを読み込み、
formatに従ってそれを解釈して、vlistによって定義された場所に結果を格納します.Original:
Reads data from the a variety of sources, interprets it according to
format and stores the results into locations defined by vlist.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)
stdinからデータを読み込みます
Original:
Reads the data from stdin
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)
ファイルストリーム
streamからデータを読み込みますOriginal:
Reads the data from file stream
streamThe 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)
NULLで終わる文字列
bufferからデータを読み込みますOriginal:
Reads the data from null-terminated character string
bufferThe 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.
目次 |
[編集] パラメータ
| stream | - | から読み込むための入力ファイルストリーム
Original: input file stream to read from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| buffer | - | から読み取るための、nullで終わる文字列へのポインタ
Original: pointer to a null-terminated character string to read from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| format | - | 入力を読み取る方法を指定するNULLで終わる文字列へのポインタ。
フォーマット文字列は、空白文字(フォーマット文字列内の任意の1つの空白文字は入力から利用可能なすべての連続した空白文字を消費します)、
%以外の非空白文字(フォーマット文字列で、それぞれの文字が入力から正確に1つの同一の文字を消費する)で構成されていますと変換仕様。各変換仕様の形式は次のとおりですOriginal: The format string consists of whitespace characters (any single whitespace character in the format string consumes all available consecutive whitespace characters from the input), non-whitespace characters except % (each such character in the format strings consumes exactly one identical character from the input) and conversion specifications. Each conversion specification has the following format:The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
次の書式指定子が用意されています
Original: The following format specifiers are available: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Original: pointer to a null-terminated character string specifying how to read the input.
フォーマット文字列は、空白文字(フォーマット文字列内の任意の1つの空白文字は入力から利用可能なすべての連続した空白文字を消費します)、
%以外の非空白文字(フォーマット文字列で、それぞれの文字が入力から正確に1つの同一の文字を消費する)で構成されていますと変換仕様。各変換仕様の形式は次のとおりですOriginal: The format string consists of whitespace characters (any single whitespace character in the format string consumes all available consecutive whitespace characters from the input), non-whitespace characters except % (each such character in the format strings consumes exactly one identical character from the input) and conversion specifications. Each conversion specification has the following format:The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
次の書式指定子が用意されています
Original: The following format specifiers are available: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| vlist | - | 受け取る引数を含む可変引数リスト
Original: variable argument list containing the receiving arguments The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[編集] 値を返します
障害が発生した場合、引数の数が正常に読み取る、またはEOF.
Original:
Number of arguments successfully read, or EOF if failure occurs.
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.
[編集] 例
| This section is incomplete Reason: no example |
[編集] も参照してください
| stdin、ファイルストリームまたはバッファからの書式付き入力を読み取ります Original: reads formatted input from stdin, a file stream or a buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) | |
| プリントはstdout、ファイルストリームまたは可変引数リストを使用してbuffer に出力をフォーマットします Original: prints formatted output to stdout, a file stream or a buffer using variable argument list The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) | |
| C++ documentation for vscanf, vfscanf, vsscanf
| |