Namespaces
Variants
Views
Actions

std::vscanf, std::vfscanf, std::vsscanf

From cppreference.com
< cpp | io | c
Defined in header <cstdio>
int vscanf( const char *format, va_list vlist );
(1) (since C++11)
int vfscanf( FILE *stream, const char *format, va_list vlist );
(2) (since C++11)
int vsscanf( const char *buffer, const char *format, va_list vlist );
(3) (since C++11)

Reads data from the a variety of sources, interprets it according to format and stores the results into locations defined by vlist.

1) Reads the data from stdin.
2) Reads the data from file stream stream.
3) Reads the data from null-terminated character string buffer.

Contents

[edit] Parameters

stream - input file stream to read from
buffer - pointer to a null-terminated character string to read from
format - pointer to a null-terminated character string specifying how to read the input.

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:

  • introductory % character
  • (optional) assignment-suppressing character *. If this option is present, the function does not assign the result of the conversion to any receiving argument.
  • (optional) integer number (greater than zero) that specifies maximum field width, that is, the maximum number of characters that the function is allowed to consume when doing the conversion specified by the current conversion specification
  • (optional) length modifier that specifies the size of the receiving argument, that is, the actual destination type. This affects the conversion accuracy and overflow rules. The default destination type is different for each conversion type (see table below).
  • conversion format specifier

The following format specifiers are available:

Conversion
specifier
Explanation Argument type
length modifier hh h (none) l ll j z t L
% matches literal % N/A N/A N/A N/A N/A N/A N/A N/A N/A
c matches a single character N/A N/A char* wchar_t* N/A N/A N/A N/A N/A
s matches a character string
[set]
matches a non-empty sequence of character from set of characters.

If the first character of the set is ^, then all characters not in the set are matched. If the set begins with ] or ^] then the ] character is also included into the set.

d
matches a decimal integer.

The format of the number is the same as expected by strtol() with the value 10 for the base argument

signed
char*

or

unsigned
char*
signed
short*

or

unsigned
short*
signed
int*

or

unsigned
int*
signed
long*

or

unsigned
long*
signed
long long*

or

unsigned
long*
intmax_t*

or

uintmax_t*
size_t* ptrdiff_t* N/A
i
matches a decimal integer.

The format of the number is the same as expected by strtol() with the value 0 for the base argument

u
matches a unsigned decimal integer.

The format of the number is the same as expected by strtoul() with the value 0 for the base argument

o
matches an octal integer.

The format of the number is the same as expected by strtol() with the value 8 for the base argument

x
matches an hexadecimal integer.

The format of the number is the same as expected by strtol() with the value 16 for the base argument

n
returns the number of characters read so far.

No input is consumed. Does not increment the assignment count. If the specifier has assignment-suppressing operator defined, the behavior is undefined

a, A
e, E
f, F
g, G
matches a floating-point number.

The format of the number is the same as expected by strtof()

N/A N/A float* double* N/A N/A N/A N/A long
double*
p
matches implementation defined character sequence defining a pointer.

printf family of functions should produce the same sequence using %p format specifier

N/A N/A void** N/A N/A N/A N/A N/A N/A


vlist - variable argument list containing the receiving arguments

[edit] Return value

Number of arguments successfully read, or EOF if failure occurs.

[edit] Example

[edit] See also

reads formatted input from stdin, a file stream or a buffer
(function) [edit]
prints formatted output to stdout, a file stream or a buffer
using variable argument list
(function) [edit]
C documentation for vscanf, vfscanf, vsscanf