sscanf、 _sscanf_l、 swscanf、 _swscanf_l
讀取的格式字串中的資料。 這些函式更安全版本都可使用; see 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。
有關這些及其他錯誤碼資訊,請參閱 _doserrno、 errno、 _sys_errlist,以及 _sys_nerr。
備註
sscanf函式會將資料從buffer到每個給定的位置argument。 每個argument必須是變數的指標,與對應的型別規範中的型別變數format。 format解譯型別的欄位,並具有相同的引數控制項形成和運作format引數的scanf函式。 如果複製之間所經歷重疊的字串,這個行為未定義。
安全性提示 |
---|
在讀取包含字串sscanf,一定要指定的寬度%s格式 (例如, "%32s"而不是"%s") ; 否則,格式不正確的輸入容易造成緩衝區滿溢。 |
swscanf寬字元版本的sscanf。 引數去swscanf是寬字元字串。 sscanf無法處理多位元組的十六進位字元。 swscanf無法處理 Unicode 全形十六進位或 「 相容性區域"字元。 否則, 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> |
其他的相容性資訊,請參閱相容性在簡介中。
範例
// 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 );
}
.NET Framework 對等用法
請參閱Parse方法,例如 System::Double::Parse。
請參閱
參考
fscanf、 _fscanf_l、 fwscanf、 _fwscanf_l
scanf、 _scanf_l、 wscanf、 _wscanf_l