blob: 98e5a80c75ec9ca018abcf7a12a88ed762fc87a0 [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\section{Standard Module \sectcode{string}}
Guido van Rossume47da0a1997-07-17 16:34:52 +00002\label{module-string}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00003\stmodindex{string}
4
5This module defines some constants useful for checking character
Fred Drake6d2bdb61997-12-16 04:04:25 +00006classes and some useful string functions. See the module
Fred Drakecce10901998-03-17 06:33:25 +00007\module{re}\refstmodindex{re} for string functions based on regular
8expressions.
Guido van Rossum0bf4d891995-03-02 12:37:30 +00009
10The constants defined in this module are are:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000011
Fred Drake19479911998-02-13 06:58:54 +000012\setindexsubitem{(data in module string)}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000013\begin{datadesc}{digits}
14 The string \code{'0123456789'}.
15\end{datadesc}
16
17\begin{datadesc}{hexdigits}
18 The string \code{'0123456789abcdefABCDEF'}.
19\end{datadesc}
20
21\begin{datadesc}{letters}
Fred Drakecce10901998-03-17 06:33:25 +000022 The concatenation of the strings \function{lowercase()} and
23 \function{uppercase()} described below.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000024\end{datadesc}
25
26\begin{datadesc}{lowercase}
27 A string containing all the characters that are considered lowercase
28 letters. On most systems this is the string
Guido van Rossum86751151995-02-28 17:14:32 +000029 \code{'abcdefghijklmnopqrstuvwxyz'}. Do not change its definition ---
Fred Drakecce10901998-03-17 06:33:25 +000030 the effect on the routines \function{upper()} and
31 \function{swapcase()} is undefined.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000032\end{datadesc}
33
34\begin{datadesc}{octdigits}
35 The string \code{'01234567'}.
36\end{datadesc}
37
38\begin{datadesc}{uppercase}
39 A string containing all the characters that are considered uppercase
40 letters. On most systems this is the string
Guido van Rossum86751151995-02-28 17:14:32 +000041 \code{'ABCDEFGHIJKLMNOPQRSTUVWXYZ'}. Do not change its definition ---
Fred Drakecce10901998-03-17 06:33:25 +000042 the effect on the routines \function{lower()} and
43 \function{swapcase()} is undefined.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000044\end{datadesc}
45
46\begin{datadesc}{whitespace}
47 A string containing all characters that are considered whitespace.
48 On most systems this includes the characters space, tab, linefeed,
Guido van Rossum86751151995-02-28 17:14:32 +000049 return, formfeed, and vertical tab. Do not change its definition ---
Fred Drakecce10901998-03-17 06:33:25 +000050 the effect on the routines \function{strip()} and \function{split()}
51 is undefined.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000052\end{datadesc}
53
Guido van Rossum0bf4d891995-03-02 12:37:30 +000054The functions defined in this module are:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000055
Fred Drake19479911998-02-13 06:58:54 +000056\setindexsubitem{(in module string)}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000057
58\begin{funcdesc}{atof}{s}
59Convert a string to a floating point number. The string must have
60the standard syntax for a floating point literal in Python, optionally
Guido van Rossum740eb821997-04-02 05:56:16 +000061preceded by a sign (\samp{+} or \samp{-}). Note that this behaves
Fred Drakecce10901998-03-17 06:33:25 +000062identical to the built-in function
63\function{float()}\bifuncindex{float} when passed a string.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000064\end{funcdesc}
65
Fred Drakecce10901998-03-17 06:33:25 +000066\begin{funcdesc}{atoi}{s\optional{, base}}
Guido van Rossum470be141995-03-17 16:07:09 +000067Convert string \var{s} to an integer in the given \var{base}. The
68string must consist of one or more digits, optionally preceded by a
69sign (\samp{+} or \samp{-}). The \var{base} defaults to 10. If it is
700, a default base is chosen depending on the leading characters of the
71string (after stripping the sign): \samp{0x} or \samp{0X} means 16,
72\samp{0} means 8, anything else means 10. If \var{base} is 16, a
Guido van Rossum740eb821997-04-02 05:56:16 +000073leading \samp{0x} or \samp{0X} is always accepted. Note that when
74invoked without \var{base} or with \var{base} set to 10, this behaves
Fred Drakecce10901998-03-17 06:33:25 +000075identical to the built-in function \function{int()} when passed a string.
Guido van Rossum740eb821997-04-02 05:56:16 +000076(Also note: for a more flexible interpretation of numeric literals,
Fred Drakecce10901998-03-17 06:33:25 +000077use the built-in function \function{eval()}\bifuncindex{eval}.)
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000078\end{funcdesc}
79
Fred Drakecce10901998-03-17 06:33:25 +000080\begin{funcdesc}{atol}{s\optional{, base}}
81Convert string \var{s} to a long integer in the given \var{base}. The
Guido van Rossum470be141995-03-17 16:07:09 +000082string must consist of one or more digits, optionally preceded by a
83sign (\samp{+} or \samp{-}). The \var{base} argument has the same
Fred Drakecce10901998-03-17 06:33:25 +000084meaning as for \function{atoi()}. A trailing \samp{l} or \samp{L} is
85not allowed, except if the base is 0. Note that when invoked without
Guido van Rossum740eb821997-04-02 05:56:16 +000086\var{base} or with \var{base} set to 10, this behaves identical to the
Fred Drakecce10901998-03-17 06:33:25 +000087built-in function \function{long()}\bifuncindex{long} when passed a
88string.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000089\end{funcdesc}
90
Guido van Rossume5e55d71996-08-09 21:44:51 +000091\begin{funcdesc}{capitalize}{word}
92Capitalize the first character of the argument.
93\end{funcdesc}
94
95\begin{funcdesc}{capwords}{s}
Fred Drakecce10901998-03-17 06:33:25 +000096Split the argument into words using \function{split()}, capitalize
97each word using \function{capitalize()}, and join the capitalized
98words using \function{join()}. Note that this replaces runs of
99whitespace characters by a single space, and removes leading and
100trailing whitespace.
Guido van Rossume5e55d71996-08-09 21:44:51 +0000101\end{funcdesc}
102
Fred Drakecce10901998-03-17 06:33:25 +0000103\begin{funcdesc}{expandtabs}{s, tabsize}
Guido van Rossum6bb1adc1995-03-13 10:03:32 +0000104Expand tabs in a string, i.e.\ replace them by one or more spaces,
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000105depending on the current column and the given tab size. The column
106number is reset to zero after each newline occurring in the string.
107This doesn't understand other non-printing characters or escape
108sequences.
109\end{funcdesc}
110
Fred Drakecce10901998-03-17 06:33:25 +0000111\begin{funcdesc}{find}{s, sub\optional{, start\optional{,end}}}
Guido van Rossum828a0bd1997-10-20 22:40:26 +0000112Return the lowest index in \var{s} where the substring \var{sub} is
113found such that \var{sub} is wholly contained in
Fred Drakecce10901998-03-17 06:33:25 +0000114\code{\var{s}[\var{start}:\var{end}]}. Return \code{-1} on failure.
Guido van Rossum828a0bd1997-10-20 22:40:26 +0000115Defaults for \var{start} and \var{end} and interpretation of negative
116values is the same as for slices.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000117\end{funcdesc}
118
Fred Drakecce10901998-03-17 06:33:25 +0000119\begin{funcdesc}{rfind}{s, sub\optional{, start\optional{, end}}}
120Like \function{find()} but find the highest index.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000121\end{funcdesc}
122
Fred Drakecce10901998-03-17 06:33:25 +0000123\begin{funcdesc}{index}{s, sub\optional{, start\optional{, end}}}
124Like \function{find()} but raise \exception{ValueError} when the
125substring is not found.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000126\end{funcdesc}
127
Fred Drakecce10901998-03-17 06:33:25 +0000128\begin{funcdesc}{rindex}{s, sub\optional{, start\optional{, end}}}
129Like \function{rfind()} but raise \exception{ValueError} when the
130substring is not found.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000131\end{funcdesc}
132
Fred Drakecce10901998-03-17 06:33:25 +0000133\begin{funcdesc}{count}{s, sub\optional{, start\optional{, end}}}
Guido van Rossumab3a2501994-08-01 12:18:36 +0000134Return the number of (non-overlapping) occurrences of substring
Guido van Rossum828a0bd1997-10-20 22:40:26 +0000135\var{sub} in string \code{\var{s}[\var{start}:\var{end}]}.
136Defaults for \var{start} and \var{end} and interpretation of negative
137values is the same as for slices.
Guido van Rossumab3a2501994-08-01 12:18:36 +0000138\end{funcdesc}
139
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000140\begin{funcdesc}{lower}{s}
141Convert letters to lower case.
142\end{funcdesc}
143
Guido van Rossumf4d0d571996-07-30 18:23:05 +0000144\begin{funcdesc}{maketrans}{from, to}
Fred Drakecce10901998-03-17 06:33:25 +0000145Return a translation table suitable for passing to
146\function{translate()} or \function{regex.compile()}, that will map
147each character in \var{from} into the character at the same position
148in \var{to}; \var{from} and \var{to} must have the same length.
Guido van Rossumf4d0d571996-07-30 18:23:05 +0000149\end{funcdesc}
150
Fred Drakecce10901998-03-17 06:33:25 +0000151\begin{funcdesc}{split}{s\optional{, sep\optional{, maxsplit}}}
Guido van Rossume5e55d71996-08-09 21:44:51 +0000152Return a list of the words of the string \var{s}. If the optional
153second argument \var{sep} is absent or \code{None}, the words are
154separated by arbitrary strings of whitespace characters (space, tab,
155newline, return, formfeed). If the second argument \var{sep} is
156present and not \code{None}, it specifies a string to be used as the
157word separator. The returned list will then have one more items than
158the number of non-overlapping occurrences of the separator in the
159string. The optional third argument \var{maxsplit} defaults to 0. If
160it is nonzero, at most \var{maxsplit} number of splits occur, and the
161remainder of the string is returned as the final element of the list
162(thus, the list will have at most \code{\var{maxsplit}+1} elements).
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000163\end{funcdesc}
164
Fred Drakecce10901998-03-17 06:33:25 +0000165\begin{funcdesc}{splitfields}{s\optional{, sep\optional{, maxsplit}}}
166This function behaves identically to \function{split()}. (In the
167past, \function{split()} was only used with one argument, while
168\function{splitfields()} was only used with two arguments.)
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000169\end{funcdesc}
170
Fred Drakecce10901998-03-17 06:33:25 +0000171\begin{funcdesc}{join}{words\optional{, sep}}
Guido van Rossume5e55d71996-08-09 21:44:51 +0000172Concatenate a list or tuple of words with intervening occurrences of
Fred Drakecce10901998-03-17 06:33:25 +0000173\var{sep}. The default value for \var{sep} is a single space
174character. It is always true that
175\samp{string.join(string.split(\var{s}, \var{sep}), \var{sep})}
Guido van Rossume5e55d71996-08-09 21:44:51 +0000176equals \var{s}.
177\end{funcdesc}
178
Fred Drakecce10901998-03-17 06:33:25 +0000179\begin{funcdesc}{joinfields}{words\optional{, sep}}
180This function behaves identical to \function{join()}. (In the past,
181\function{join()} was only used with one argument, while
182\function{joinfields()} was only used with two arguments.)
Guido van Rossume5e55d71996-08-09 21:44:51 +0000183\end{funcdesc}
184
185\begin{funcdesc}{lstrip}{s}
186Remove leading whitespace from the string \var{s}.
187\end{funcdesc}
188
189\begin{funcdesc}{rstrip}{s}
190Remove trailing whitespace from the string \var{s}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000191\end{funcdesc}
192
193\begin{funcdesc}{strip}{s}
Guido van Rossume5e55d71996-08-09 21:44:51 +0000194Remove leading and trailing whitespace from the string \var{s}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000195\end{funcdesc}
196
197\begin{funcdesc}{swapcase}{s}
Guido van Rossum6bb1adc1995-03-13 10:03:32 +0000198Convert lower case letters to upper case and vice versa.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000199\end{funcdesc}
200
Guido van Rossumf4d0d571996-07-30 18:23:05 +0000201\begin{funcdesc}{translate}{s, table\optional{, deletechars}}
Fred Drakecce10901998-03-17 06:33:25 +0000202Delete all characters from \var{s} that are in \var{deletechars} (if
203present), and then translate the characters using \var{table}, which
204must be a 256-character string giving the translation for each
205character value, indexed by its ordinal.
Guido van Rossumf65f2781995-09-13 17:37:21 +0000206\end{funcdesc}
207
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000208\begin{funcdesc}{upper}{s}
209Convert letters to upper case.
210\end{funcdesc}
211
Fred Drakecce10901998-03-17 06:33:25 +0000212\begin{funcdesc}{ljust}{s, width}
213\funcline{rjust}{s, width}
214\funcline{center}{s, width}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000215These functions respectively left-justify, right-justify and center a
216string in a field of given width.
217They return a string that is at least
218\var{width}
219characters wide, created by padding the string
220\var{s}
221with spaces until the given width on the right, left or both sides.
222The string is never truncated.
223\end{funcdesc}
224
Fred Drakecce10901998-03-17 06:33:25 +0000225\begin{funcdesc}{zfill}{s, width}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000226Pad a numeric string on the left with zero digits until the given
227width is reached. Strings starting with a sign are handled correctly.
228\end{funcdesc}
Guido van Rossum0bf4d891995-03-02 12:37:30 +0000229
Guido van Rossum740eb821997-04-02 05:56:16 +0000230\begin{funcdesc}{replace}{str, old, new\optional{, maxsplit}}
Guido van Rossumc8a80cd1997-03-25 16:41:31 +0000231Return a copy of string \var{str} with all occurrences of substring
Guido van Rossum740eb821997-04-02 05:56:16 +0000232\var{old} replaced by \var{new}. If the optional argument
233\var{maxsplit} is given, the first \var{maxsplit} occurrences are
234replaced.
Guido van Rossumc8a80cd1997-03-25 16:41:31 +0000235\end{funcdesc}
236
Guido van Rossum0bf4d891995-03-02 12:37:30 +0000237This module is implemented in Python. Much of its functionality has
Fred Drakecce10901998-03-17 06:33:25 +0000238been reimplemented in the built-in module
239\module{strop}\refbimodindex{strop}. However, you
Guido van Rossum0bf4d891995-03-02 12:37:30 +0000240should \emph{never} import the latter module directly. When
Fred Drakecce10901998-03-17 06:33:25 +0000241\module{string} discovers that \module{strop} exists, it transparently
242replaces parts of itself with the implementation from \module{strop}.
Guido van Rossum0bf4d891995-03-02 12:37:30 +0000243After initialization, there is \emph{no} overhead in using
Fred Drakecce10901998-03-17 06:33:25 +0000244\module{string} instead of \module{strop}.