• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.. highlight:: c
2
3.. _string-conversion:
4
5String conversion and formatting
6================================
7
8Functions for number conversion and formatted string output.
9
10
11.. c:function:: int PyOS_snprintf(char *str, size_t size,  const char *format, ...)
12
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(3)`.
15
16
17.. c:function:: int PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va)
18
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(3)`.
22
23: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
25guarantee 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``, ``format != NULL``
31and ``size < INT_MAX``. Note that this means there is no equivalent to the C99
32``n = snprintf(NULL, 0, ...)`` which would determine the necessary buffer size.
33
34The return value (*rv*) for these functions should be interpreted as follows:
35
36* When ``0 <= rv < size``, the output conversion was successful and *rv*
37  characters were written to *str* (excluding the trailing ``'\0'`` byte at
38  ``str[rv]``).
39
40* When ``rv >= size``, the output conversion was truncated and a buffer with
41  ``rv + 1`` bytes would have been needed to succeed. ``str[size-1]`` is ``'\0'``
42  in this case.
43
44* When ``rv < 0``, "something bad happened." ``str[size-1]`` is ``'\0'`` in
45  this case too, but the rest of *str* is undefined. The exact cause of the error
46  depends on the underlying platform.
47
48
49The following functions provide locale-independent string to number conversions.
50
51.. c:function:: unsigned long PyOS_strtoul(const char *str, char **ptr, int base)
52
53   Convert the initial part of the string in ``str`` to an :c:expr:`unsigned
54   long` value according to the given ``base``, which must be between ``2`` and
55   ``36`` inclusive, or be the special value ``0``.
56
57   Leading white space and case of characters are ignored.  If ``base`` is zero
58   it looks for a leading ``0b``, ``0o`` or ``0x`` to tell which base.  If
59   these are absent it defaults to ``10``.  Base must be 0 or between 2 and 36
60   (inclusive).  If ``ptr`` is non-``NULL`` it will contain a pointer to the
61   end of the scan.
62
63   If the converted value falls out of range of corresponding return type,
64   range error occurs (:c:data:`errno` is set to :c:macro:`!ERANGE`) and
65   :c:macro:`!ULONG_MAX` is returned.  If no conversion can be performed, ``0``
66   is returned.
67
68   See also the Unix man page :manpage:`strtoul(3)`.
69
70   .. versionadded:: 3.2
71
72
73.. c:function:: long PyOS_strtol(const char *str, char **ptr, int base)
74
75   Convert the initial part of the string in ``str`` to an :c:expr:`long` value
76   according to the given ``base``, which must be between ``2`` and ``36``
77   inclusive, or be the special value ``0``.
78
79   Same as :c:func:`PyOS_strtoul`, but return a :c:expr:`long` value instead
80   and :c:macro:`LONG_MAX` on overflows.
81
82   See also the Unix man page :manpage:`strtol(3)`.
83
84   .. versionadded:: 3.2
85
86
87.. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception)
88
89   Convert a string ``s`` to a :c:expr:`double`, raising a Python
90   exception on failure.  The set of accepted strings corresponds to
91   the set of strings accepted by Python's :func:`float` constructor,
92   except that ``s`` must not have leading or trailing whitespace.
93   The conversion is independent of the current locale.
94
95   If ``endptr`` is ``NULL``, convert the whole string.  Raise
96   :exc:`ValueError` and return ``-1.0`` if the string is not a valid
97   representation of a floating-point number.
98
99   If endptr is not ``NULL``, convert as much of the string as
100   possible and set ``*endptr`` to point to the first unconverted
101   character.  If no initial segment of the string is the valid
102   representation of a floating-point number, set ``*endptr`` to point
103   to the beginning of the string, raise ValueError, and return
104   ``-1.0``.
105
106   If ``s`` represents a value that is too large to store in a float
107   (for example, ``"1e500"`` is such a string on many platforms) then
108   if ``overflow_exception`` is ``NULL`` return ``Py_HUGE_VAL`` (with
109   an appropriate sign) and don't set any exception.  Otherwise,
110   ``overflow_exception`` must point to a Python exception object;
111   raise that exception and return ``-1.0``.  In both cases, set
112   ``*endptr`` to point to the first character after the converted value.
113
114   If any other error occurs during the conversion (for example an
115   out-of-memory error), set the appropriate Python exception and
116   return ``-1.0``.
117
118   .. versionadded:: 3.1
119
120
121.. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags, int *ptype)
122
123   Convert a :c:expr:`double` *val* to a string using supplied
124   *format_code*, *precision*, and *flags*.
125
126   *format_code* must be one of ``'e'``, ``'E'``, ``'f'``, ``'F'``,
127   ``'g'``, ``'G'`` or ``'r'``.  For ``'r'``, the supplied *precision*
128   must be 0 and is ignored.  The ``'r'`` format code specifies the
129   standard :func:`repr` format.
130
131   *flags* can be zero or more of the values ``Py_DTSF_SIGN``,
132   ``Py_DTSF_ADD_DOT_0``, or ``Py_DTSF_ALT``, or-ed together:
133
134   * ``Py_DTSF_SIGN`` means to always precede the returned string with a sign
135     character, even if *val* is non-negative.
136
137   * ``Py_DTSF_ADD_DOT_0`` means to ensure that the returned string will not look
138     like an integer.
139
140   * ``Py_DTSF_ALT`` means to apply "alternate" formatting rules.  See the
141     documentation for the :c:func:`PyOS_snprintf` ``'#'`` specifier for
142     details.
143
144   If *ptype* is non-``NULL``, then the value it points to will be set to one of
145   ``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, or ``Py_DTST_NAN``, signifying that
146   *val* is a finite number, an infinite number, or not a number, respectively.
147
148   The return value is a pointer to *buffer* with the converted string or
149   ``NULL`` if the conversion failed. The caller is responsible for freeing the
150   returned string by calling :c:func:`PyMem_Free`.
151
152   .. versionadded:: 3.1
153
154
155.. c:function:: int PyOS_stricmp(const char *s1, const char *s2)
156
157   Case insensitive comparison of strings. The function works almost
158   identically to :c:func:`!strcmp` except that it ignores the case.
159
160
161.. c:function:: int PyOS_strnicmp(const char *s1, const char *s2, Py_ssize_t  size)
162
163   Case insensitive comparison of strings. The function works almost
164   identically to :c:func:`!strncmp` except that it ignores the case.
165