blob: b310fcb5e4f91e4908b4bdc9ecb427177b377bfe [file] [log] [blame]
Stéphane Wirtelcbb64842019-05-17 11:55:34 +02001.. highlight:: c
Georg Brandl54a3faa2008-01-20 09:30:57 +00002
3.. _string-conversion:
4
5String conversion and formatting
6================================
7
8Functions for number conversion and formatted string output.
9
10
Georg Brandl60203b42010-10-06 10:11:56 +000011.. c:function:: int PyOS_snprintf(char *str, size_t size, const char *format, ...)
Georg Brandl54a3faa2008-01-20 09:30:57 +000012
13 Output not more than *size* bytes to *str* according to the format string
14 *format* and the extra arguments. See the Unix man page :manpage:`snprintf(2)`.
15
16
Georg Brandl60203b42010-10-06 10:11:56 +000017.. c:function:: int PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va)
Georg Brandl54a3faa2008-01-20 09:30:57 +000018
19 Output not more than *size* bytes to *str* according to the format string
20 *format* and the variable argument list *va*. Unix man page
21 :manpage:`vsnprintf(2)`.
22
Georg Brandl60203b42010-10-06 10:11:56 +000023:c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C library
24functions :c:func:`snprintf` and :c:func:`vsnprintf`. Their purpose is to
Georg Brandl54a3faa2008-01-20 09:30:57 +000025guarantee consistent behavior in corner cases, which the Standard C functions do
26not.
27
28The wrappers ensure that *str*[*size*-1] is always ``'\0'`` upon return. They
29never write more than *size* bytes (including the trailing ``'\0'``) into str.
30Both functions require that ``str != NULL``, ``size > 0`` and ``format !=
31NULL``.
32
Georg Brandl60203b42010-10-06 10:11:56 +000033If the platform doesn't have :c:func:`vsnprintf` and the buffer size needed to
Georg Brandl54a3faa2008-01-20 09:30:57 +000034avoid truncation exceeds *size* by more than 512 bytes, Python aborts with a
Serhiy Storchakae835b312019-10-30 21:37:16 +020035:c:func:`Py_FatalError`.
Georg Brandl54a3faa2008-01-20 09:30:57 +000036
37The return value (*rv*) for these functions should be interpreted as follows:
38
39* When ``0 <= rv < size``, the output conversion was successful and *rv*
40 characters were written to *str* (excluding the trailing ``'\0'`` byte at
41 *str*[*rv*]).
42
43* When ``rv >= size``, the output conversion was truncated and a buffer with
44 ``rv + 1`` bytes would have been needed to succeed. *str*[*size*-1] is ``'\0'``
45 in this case.
46
47* When ``rv < 0``, "something bad happened." *str*[*size*-1] is ``'\0'`` in
48 this case too, but the rest of *str* is undefined. The exact cause of the error
49 depends on the underlying platform.
50
51The following functions provide locale-independent string to number conversions.
52
53
Georg Brandl60203b42010-10-06 10:11:56 +000054.. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception)
Mark Dickinson725bfd82009-05-03 20:33:40 +000055
Georg Brandl60203b42010-10-06 10:11:56 +000056 Convert a string ``s`` to a :c:type:`double`, raising a Python
Mark Dickinson725bfd82009-05-03 20:33:40 +000057 exception on failure. The set of accepted strings corresponds to
58 the set of strings accepted by Python's :func:`float` constructor,
59 except that ``s`` must not have leading or trailing whitespace.
60 The conversion is independent of the current locale.
61
62 If ``endptr`` is ``NULL``, convert the whole string. Raise
Stéphane Wirtele483f022018-10-26 12:52:11 +020063 :exc:`ValueError` and return ``-1.0`` if the string is not a valid
Mark Dickinson725bfd82009-05-03 20:33:40 +000064 representation of a floating-point number.
65
66 If endptr is not ``NULL``, convert as much of the string as
67 possible and set ``*endptr`` to point to the first unconverted
68 character. If no initial segment of the string is the valid
69 representation of a floating-point number, set ``*endptr`` to point
70 to the beginning of the string, raise ValueError, and return
71 ``-1.0``.
72
73 If ``s`` represents a value that is too large to store in a float
74 (for example, ``"1e500"`` is such a string on many platforms) then
75 if ``overflow_exception`` is ``NULL`` return ``Py_HUGE_VAL`` (with
76 an appropriate sign) and don't set any exception. Otherwise,
77 ``overflow_exception`` must point to a Python exception object;
78 raise that exception and return ``-1.0``. In both cases, set
79 ``*endptr`` to point to the first character after the converted value.
80
81 If any other error occurs during the conversion (for example an
82 out-of-memory error), set the appropriate Python exception and
83 return ``-1.0``.
84
85 .. versionadded:: 3.1
86
Georg Brandl54a3faa2008-01-20 09:30:57 +000087
Georg Brandl60203b42010-10-06 10:11:56 +000088.. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags, int *ptype)
Eric Smithcc32a112009-04-26 21:35:14 +000089
Georg Brandl60203b42010-10-06 10:11:56 +000090 Convert a :c:type:`double` *val* to a string using supplied
Eric Smithcc32a112009-04-26 21:35:14 +000091 *format_code*, *precision*, and *flags*.
92
Eric Smith63376222009-05-05 14:04:18 +000093 *format_code* must be one of ``'e'``, ``'E'``, ``'f'``, ``'F'``,
94 ``'g'``, ``'G'`` or ``'r'``. For ``'r'``, the supplied *precision*
95 must be 0 and is ignored. The ``'r'`` format code specifies the
96 standard :func:`repr` format.
Eric Smithcc32a112009-04-26 21:35:14 +000097
Serhiy Storchakae835b312019-10-30 21:37:16 +020098 *flags* can be zero or more of the values ``Py_DTSF_SIGN``,
99 ``Py_DTSF_ADD_DOT_0``, or ``Py_DTSF_ALT``, or-ed together:
Eric Smithcc32a112009-04-26 21:35:14 +0000100
Serhiy Storchakae835b312019-10-30 21:37:16 +0200101 * ``Py_DTSF_SIGN`` means to always precede the returned string with a sign
Eric Smithcc32a112009-04-26 21:35:14 +0000102 character, even if *val* is non-negative.
103
Serhiy Storchakae835b312019-10-30 21:37:16 +0200104 * ``Py_DTSF_ADD_DOT_0`` means to ensure that the returned string will not look
Eric Smithcc32a112009-04-26 21:35:14 +0000105 like an integer.
106
Serhiy Storchakae835b312019-10-30 21:37:16 +0200107 * ``Py_DTSF_ALT`` means to apply "alternate" formatting rules. See the
Georg Brandl60203b42010-10-06 10:11:56 +0000108 documentation for the :c:func:`PyOS_snprintf` ``'#'`` specifier for
Eric Smithcc32a112009-04-26 21:35:14 +0000109 details.
110
Serhiy Storchakae835b312019-10-30 21:37:16 +0200111 If *ptype* is non-``NULL``, then the value it points to will be set to one of
112 ``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, or ``Py_DTST_NAN``, signifying that
Eric Smithcc32a112009-04-26 21:35:14 +0000113 *val* is a finite number, an infinite number, or not a number, respectively.
114
115 The return value is a pointer to *buffer* with the converted string or
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200116 ``NULL`` if the conversion failed. The caller is responsible for freeing the
Georg Brandl60203b42010-10-06 10:11:56 +0000117 returned string by calling :c:func:`PyMem_Free`.
Eric Smithcc32a112009-04-26 21:35:14 +0000118
119 .. versionadded:: 3.1
120
Georg Brandl54a3faa2008-01-20 09:30:57 +0000121
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300122.. c:function:: int PyOS_stricmp(const char *s1, const char *s2)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000123
Georg Brandl2ee470f2008-07-16 12:55:28 +0000124 Case insensitive comparison of strings. The function works almost
Georg Brandl60203b42010-10-06 10:11:56 +0000125 identically to :c:func:`strcmp` except that it ignores the case.
Georg Brandl54a3faa2008-01-20 09:30:57 +0000126
127
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300128.. c:function:: int PyOS_strnicmp(const char *s1, const char *s2, Py_ssize_t size)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000129
Georg Brandl2ee470f2008-07-16 12:55:28 +0000130 Case insensitive comparison of strings. The function works almost
Georg Brandl60203b42010-10-06 10:11:56 +0000131 identically to :c:func:`strncmp` except that it ignores the case.