W3cubDocs

/Octave

14.2.13 Table of Input Conversions

Here is a table that summarizes the various conversion specifications:

%d

Matches an optionally signed integer written in decimal. See Numeric Input Conversions.

%i

Matches an optionally signed integer in any of the formats that the C language defines for specifying an integer constant. See Numeric Input Conversions.

%o

Matches an unsigned integer written in octal radix. See Numeric Input Conversions.

%u

Matches an unsigned integer written in decimal radix. See Numeric Input Conversions.

%x’, ‘%X

Matches an unsigned integer written in hexadecimal radix. See Numeric Input Conversions.

%e’, ‘%f’, ‘%g’, ‘%E’, ‘%G

Matches an optionally signed floating-point number. See Numeric Input Conversions.

%s

Matches a string containing only non-whitespace characters. See String Input Conversions.

%c

Matches a string of one or more characters; the number of characters read is controlled by the maximum field width given for the conversion. See String Input Conversions.

%%

This matches a literal ‘%’ character in the input stream. No corresponding argument is used.

If the syntax of a conversion specification is invalid, the behavior is undefined. If there aren’t enough function arguments provided to supply addresses for all the conversion specifications in the template strings that perform assignments, or if the arguments are not of the correct types, the behavior is also undefined. On the other hand, extra arguments are simply ignored.

© 1996–2018 John W. Eaton
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
https://octave.org/doc/interpreter/Table-of-Input-Conversions.html