sscanf
、 _sscanf_l
、 swscanf
、 _swscanf_l
文字列から書式付きデータを読み出します。 これらの関数のセキュリティを強化したバージョンを使用できます。「sscanf_s
、_sscanf_s_l
、swscanf_s
、_swscanf_s_l
」を参照してください。
構文
int sscanf(
const char *buffer,
const char *format [,
argument ] ...
);
int _sscanf_l(
const char *buffer,
const char *format,
_locale_t locale [,
argument ] ...
);
int swscanf(
const wchar_t *buffer,
const wchar_t *format [,
argument ] ...
);
int _swscanf_l(
const wchar_t *buffer,
const wchar_t *format,
_locale_t locale [,
argument ] ...
);
パラメーター
buffer
格納されるデータ。
format
書式指定文字列。 詳細については、「書式指定構文」を参照してください。
argument
省略可能な引数。
locale
使用するロケール。
戻り値
これらの関数は、正常に変換および代入されたフィールドの数を返します。読み込まれただけで代入されなかったフィールドは戻り値には含まれません。 戻り値が 0 の場合は、代入されたフィールドがなかったことを示します。 エラーが発生するか、最初の変換前に文字列の終端に達した場合は EOF
が返されます。
buffer
またはformat
がNULL
ポインターである場合は、「パラメーターの検証」で説明されているように、無効なパラメーター ハンドラー呼び出。 実行の継続が許可された場合、これらの関数は -1 を返し、errno
を EINVAL
に設定します。
これらのエラー コードおよびその他のエラー コードの詳細については、「errno
、_doserrno
、_sys_errlist
、_sys_nerr
」を参照してください。
解説
sscanf
関数は、buffer
からのデータを各 argument
で指定した位置に読み込みます。 各 argument
は、format
の型指定子に対応する型の変数へのポインターにする必要があります。 引数 format
は、入力フィールドの解釈を制御し、format
関数の引数 scanf
と同じ形式と機能を持ちます。 重なり合う文字列間でコピーした場合の動作は未定義です。
scanf 型フィールド文字の詳細については、「 scanf
型フィールド文字を参照してください。 scanf 形式の指定フィールドの詳細については、「 Format 仕様フィールドを参照してください。
重要
sscanf
の文字列を読み取るときは、%s
の書式向けに幅を必ず指定します (たとえば、"%s
" の代わりに "%32s
")。それ以外の場合は、不適切な書式を入力するとバッファー オーバーランが発生しやすくなる場合があります。
swscanf
は sscanf
のワイド文字バージョンであり、 swscanf
の引数はワイド文字列です。 sscanf
では、マルチバイトの 16 進数文字は処理されません。 swscanf
では、Unicode の全角 16 進数または "互換性ゾーン" 文字は処理されません。 それ以外では、 swscanf
と sscanf
の動作は同じです。
これらの関数のうち _l
サフィックスが付けられたバージョンは、現在のスレッド ロケールの代わりに渡されたロケール パラメーターを使用する点を除いて同じです。
汎用テキスト ルーチンのマップ
TCHAR.H ルーチン |
_UNICODE と _MBCS が定義されていない |
_MBCS が定義されている |
_UNICODE が定義されている |
---|---|---|---|
_stscanf |
sscanf |
sscanf |
swscanf |
_stscanf_l |
_sscanf_l |
_sscanf_l |
_swscanf_l |
要件
ルーチンによって返される値 | 必須ヘッダー |
---|---|
sscanf , _sscanf_l |
<stdio.h> |
swscanf , _swscanf_l |
<stdio.h> または <wchar.h> |
互換性の詳細については、「 Compatibility」を参照してください。
例
// crt_sscanf.c
// compile with: /W3
// This program uses sscanf to read data items
// from a string named tokenstring, then displays them.
#include <stdio.h>
int main( void )
{
char tokenstring[] = "15 12 14...";
char s[81];
char c;
int i;
float fp;
// Input various data from tokenstring:
// max 80 character string:
sscanf( tokenstring, "%80s", s ); // C4996
sscanf( tokenstring, "%c", &c ); // C4996
sscanf( tokenstring, "%d", &i ); // C4996
sscanf( tokenstring, "%f", &fp ); // C4996
// Note: sscanf is deprecated; consider using sscanf_s instead
// Output the data read
printf( "String = %s\n", s );
printf( "Character = %c\n", c );
printf( "Integer: = %d\n", i );
printf( "Real: = %f\n", fp );
}
String = 15
Character = 1
Integer: = 15
Real: = 15.000000
関連項目
ストリーム入出力
fscanf
、 _fscanf_l
、 fwscanf
、 _fwscanf_l
scanf
、 _scanf_l
、 wscanf
、 _wscanf_l
sprintf
、 _sprintf_l
、 swprintf
、 _swprintf_l
、 __swprintf_l
snprintf
、 _snprintf
、 _snprintf_l
、 _snwprintf
、 _snwprintf_l