Returns a formatted string. The string is produced according to the format_string with format specifiers being replaced by values from args formatted according to the specifier.
Within the format string, any characters other than format specifiers (specifiers beginning with %) are copied to the result. The formatter supports the following kinds of format specifiers:
- Sequential (
%.1f). The first % consumes the first argument, the second consumes the second argument, and so on. - Positional (
%3$.1f). The one-based argument index is specified as part of the flags. - Named substitution (
%<name>.1f, %{name}). The angle bracket form accepts flags and the curly bracket form doesn't. Exactly one Hash or NamedTuple must be passed as the argument.
Mixing of different kinds of format specifiers is disallowed, except that the two named forms may be used together.
A simple format specifier consists of a percent sign, followed by optional flags, width, and precision indicators, then terminated with a field type character.
%[flags][width][.precision]type
A formatted substitution is similar but after the percent sign follows the mandatory name of the substitution wrapped in angle brackets.
%<name>[flags][width][.precision]type
The percent sign itself is escaped by %%. No format modifiers are allowed, and no arguments are consumed.
The field type controls how the corresponding argument value is to be interpreted, while the flags modify that interpretation.
The field type characters are:
Field | Integer Format
------+------------------------------------------------------------------
b | Formats argument as a binary number.
d | Formats argument as a decimal number.
i | Same as d.
o | Formats argument as an octal number.
x | Formats argument as a hexadecimal number using lowercase letters.
X | Same as x, but uses uppercase letters.
Field | Float Format
------+---------------------------------------------------------------
e | Formats floating point argument into exponential notation
| with one digit before the decimal point as [-]d.dddddde[+-]dd.
| The precision specifies the number of digits after the decimal
| point (defaulting to six).
E | Equivalent to e, but uses an uppercase E to indicate
| the exponent.
f | Formats floating point argument as [-]ddd.dddddd,
| where the precision specifies the number of digits after
| the decimal point.
g | Formats a floating point number using exponential form
| if the exponent is less than -4 or greater than or
| equal to the precision, or in dd.dddd form otherwise.
| The precision specifies the number of significant digits.
G | Equivalent to g, but use an uppercase E in exponent form.
a | Formats floating point argument as [-]0xh.hhhhp[+-]dd,
| which consists of an optional sign, "0x", fraction part
| as hexadecimal, "p", and exponential part as decimal.
A | Equivalent to a, but uses uppercase X and P.
Field | Other Format
------+------------------------------------------------------------
c | Argument is a single character itself.
s | Argument is a string to be substituted. If the format
| sequence contains a precision, at most that many characters
| will be copied. Flags modify the behavior of the format specifiers:
Flag | Applies to | Meaning
---------+---------------+----------------------------------------------------
space | bdiouxX | Add a leading space character to
| aAeEfgG | non-negative numbers. Has no effect if the plus
| (numeric fmt) | flag is also given.
---------+---------------+----------------------------------------------------
# | boxX | Use an alternative format.
| aAeEfgG | For x, X, b, prefix any non-zero result with
| | 0x, 0X, or 0b respectively.
| | For o, prefix any non-zero result with 0o. Note
| | that this prefix is different from C and Ruby.
| | For a, A, e, E, f, g, G,
| | force a decimal point to be added,
| | even if no digits follow.
| | For g and G, do not remove trailing zeros.
---------+---------------+----------------------------------------------------
+ | bdiouxX | Add a leading plus sign to non-negative
| aAeEfgG | numbers.
| (numeric fmt) |
---------+---------------+----------------------------------------------------
- | all | Left-justify the result of this conversion.
---------+---------------+----------------------------------------------------
0 (zero) | bdiouxX | Pad with zeros, not spaces. Has no effect if the
| aAeEfgG | number is left-justified, or a precision is given
| (numeric fmt) | to an integer field type.
---------+---------------+----------------------------------------------------
* | all | Use the next argument as the field width or
| | precision. If width is negative, set the minus flag
| | and use the argument's absolute value as field
| | width. If precision is negative, it is ignored.
---------+---------------+----------------------------------------------------
1$ 2$ 3$ | all | As a flag, specifies the one-based argument index
... | | for a positional format specifier.
| | Immediately after *, use the argument at the given
| | one-based index as the width or precision, instead
| | of the next argument. The entire format string must
| | also use positional format specifiers throughout. Examples of flags:
Decimal number conversion:
sprintf "%d", 123 # => "123"
sprintf "%+d", 123 # => "+123"
sprintf "% d", 123 # => " 123"
Octal number conversion:
sprintf "%o", 123 # => "173"
sprintf "%+o", 123 # => "+173"
sprintf "%o", -123 # => "-173"
sprintf "%+o", -123 # => "-173"
Hexadecimal number conversion:
sprintf "%x", 123 # => "7b"
sprintf "%+x", 123 # => "+7b"
sprintf "%x", -123 # => "-7b"
sprintf "%+x", -123 # => "-7b"
sprintf "%#x", 0 # => "0"
sprintf "% x", 123 # => " 7b"
sprintf "% x", -123 # => "-7b"
sprintf "%X", 123 # => "7B"
sprintf "%#X", -123 # => "-0X7B"
Binary number conversion:
sprintf "%b", 123 # => "1111011"
sprintf "%+b", 123 # => "+1111011"
sprintf "%+b", -123 # => "-1111011"
sprintf "%b", -123 # => "-1111011"
sprintf "%#b", 0 # => "0"
sprintf "% b", 123 # => " 1111011"
sprintf "%+ b", 123 # => "+1111011"
sprintf "% b", -123 # => "-1111011"
sprintf "%+ b", -123 # => "-1111011"
sprintf "%#b", 123 # => "0b1111011"
Floating point conversion:
sprintf "%a", 123 # => "0x1.ecp+6"
sprintf "%A", 123 # => "0X1.ECP+6"
Exponential form conversion:
sprintf "%g", 123.4 # => "123.4"
sprintf "%g", 123.4567 # => "123.457"
sprintf "%20.8g", 1234.56789 # => " 1234.5679"
sprintf "%20.8g", 123456789 # => " 1.2345679e+08"
sprintf "%20.8G", 123456789 # => " 1.2345679E+08"
sprintf "%20.8g", -123456789 # => " -1.2345679e+08"
sprintf "%20.8G", -123456789 # => " -1.2345679E+08"
The field width is an optional integer, followed optionally by a period and a precision. The width specifies the minimum number of characters that will be written to the result for this field.
Examples of width:
sprintf "%20d", 123 # => " 123"
sprintf "%+20d", 123 # => " +123"
sprintf "%020d", 123 # => "00000000000000000123"
sprintf "%+020d", 123 # => "+0000000000000000123"
sprintf "% 020d", 123 # => " 0000000000000000123"
sprintf "%-20d", 123 # => "123 "
sprintf "%-+20d", 123 # => "+123 "
sprintf "%- 20d", 123 # => " 123 "
sprintf "%020x", -123 # => "-000000000000000007b"
sprintf "%020X", -123 # => "-000000000000000007B"
For numeric fields, the precision controls the number of decimal places displayed.
For string fields, the precision determines the maximum number of characters to be copied from the string.
Examples of precisions:
Precision for d, o, x and b is minimum number of digits:
sprintf "%20.8d", 123 # => " 00000123"
sprintf "%020.8d", 123 # => " 00000123"
sprintf "%20.8o", 123 # => " 00000173"
sprintf "%020.8o", 123 # => " 00000173"
sprintf "%20.8x", 123 # => " 0000007b"
sprintf "%020.8x", 123 # => " 0000007b"
sprintf "%20.8b", 123 # => " 01111011"
sprintf "%20.8d", -123 # => " -00000123"
sprintf "%020.8d", -123 # => " -00000123"
sprintf "%20.8o", -123 # => " -00000173"
sprintf "%20.8x", -123 # => " -0000007b"
sprintf "%20.8b", -11 # => " -00001011"
Precision for e is number of digits after the decimal point:
sprintf "%20.8e", 1234.56789 # => " 1.23456789e+03"
Precision for f is number of digits after the decimal point:
sprintf "%20.8f", 1234.56789 # => " 1234.56789000"
Precision for g is number of significant digits:
sprintf "%20.8g", 1234.56789 # => " 1234.5679"
sprintf "%20.8g", 123456789 # => " 1.2345679e+08"
sprintf "%-20.8g", 123456789 # => "1.2345679e+08 "
Precision for s is maximum number of characters:
sprintf "%20.8s", "string test" # => " string t"
Additional examples:
sprintf "%d %04x", 123, 123 # => "123 007b"
sprintf "%08b '%4s'", 123, 123 # => "01111011 ' 123'"
sprintf "%+g:% g:%-g", 1.23, 1.23, 1.23 # => "+1.23: 1.23:1.23"
sprintf "%-3$*1$.*2$s", 10, 5, "abcdefghij" # => "abcde "