blob: 8a7c8faafc067fc64b4609f7e30929c9ef05c11a [file] [log] [blame]
Guido van Rossumc6360141990-10-13 19:23:40 +00001# module 'string' -- A collection of string operations
2
Guido van Rossume7113b61993-03-29 11:30:50 +00003# Warning: most of the code you see here isn't normally used nowadays.
4# At the end of this file most functions are replaced by built-in
5# functions imported from built-in module "strop".
Guido van Rossumc6360141990-10-13 19:23:40 +00006
7# Some strings for ctype-style character classification
Guido van Rossum8e2ec561993-07-29 09:37:38 +00008whitespace = ' \t\n\r\v\f'
Guido van Rossumc6360141990-10-13 19:23:40 +00009lowercase = 'abcdefghijklmnopqrstuvwxyz'
10uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
11letters = lowercase + uppercase
12digits = '0123456789'
13hexdigits = digits + 'abcdef' + 'ABCDEF'
14octdigits = '01234567'
15
16# Case conversion helpers
Guido van Rossuma61ff7b1992-01-14 18:31:29 +000017_idmap = ''
18for i in range(256): _idmap = _idmap + chr(i)
19_lower = _idmap[:ord('A')] + lowercase + _idmap[ord('Z')+1:]
20_upper = _idmap[:ord('a')] + uppercase + _idmap[ord('z')+1:]
21_swapcase = _upper[:ord('A')] + lowercase + _upper[ord('Z')+1:]
Guido van Rossumc6360141990-10-13 19:23:40 +000022del i
23
Guido van Rossum710c3521994-08-17 13:16:11 +000024# Backward compatible names for exceptions
25index_error = ValueError
26atoi_error = ValueError
27atof_error = ValueError
28atol_error = ValueError
29
Guido van Rossumc6360141990-10-13 19:23:40 +000030# convert UPPER CASE letters to lower case
31def lower(s):
32 res = ''
33 for c in s:
Guido van Rossuma61ff7b1992-01-14 18:31:29 +000034 res = res + _lower[ord(c)]
Guido van Rossumc6360141990-10-13 19:23:40 +000035 return res
36
37# Convert lower case letters to UPPER CASE
38def upper(s):
39 res = ''
40 for c in s:
Guido van Rossuma61ff7b1992-01-14 18:31:29 +000041 res = res + _upper[ord(c)]
Guido van Rossumc6360141990-10-13 19:23:40 +000042 return res
43
44# Swap lower case letters and UPPER CASE
45def swapcase(s):
46 res = ''
47 for c in s:
Guido van Rossuma61ff7b1992-01-14 18:31:29 +000048 res = res + _swapcase[ord(c)]
Guido van Rossumc6360141990-10-13 19:23:40 +000049 return res
50
51# Strip leading and trailing tabs and spaces
52def strip(s):
53 i, j = 0, len(s)
54 while i < j and s[i] in whitespace: i = i+1
55 while i < j and s[j-1] in whitespace: j = j-1
56 return s[i:j]
57
58# Split a string into a list of space/tab-separated words
59# NB: split(s) is NOT the same as splitfields(s, ' ')!
60def split(s):
61 res = []
62 i, n = 0, len(s)
63 while i < n:
64 while i < n and s[i] in whitespace: i = i+1
Guido van Rossumbdfcfcc1992-01-01 19:35:13 +000065 if i == n: break
Guido van Rossumc6360141990-10-13 19:23:40 +000066 j = i
67 while j < n and s[j] not in whitespace: j = j+1
68 res.append(s[i:j])
69 i = j
70 return res
71
72# Split a list into fields separated by a given string
73# NB: splitfields(s, ' ') is NOT the same as split(s)!
Guido van Rossum7a461e51992-09-20 21:41:09 +000074# splitfields(s, '') returns [s] (in analogy with split() in nawk)
Guido van Rossumc6360141990-10-13 19:23:40 +000075def splitfields(s, sep):
76 res = []
Guido van Rossumc6360141990-10-13 19:23:40 +000077 nsep = len(sep)
Guido van Rossumae507a41992-08-19 16:49:58 +000078 if nsep == 0:
Guido van Rossum7a461e51992-09-20 21:41:09 +000079 return [s]
Guido van Rossumae507a41992-08-19 16:49:58 +000080 ns = len(s)
Guido van Rossumc6360141990-10-13 19:23:40 +000081 i = j = 0
82 while j+nsep <= ns:
Guido van Rossumbdfcfcc1992-01-01 19:35:13 +000083 if s[j:j+nsep] == sep:
Guido van Rossumc6360141990-10-13 19:23:40 +000084 res.append(s[i:j])
85 i = j = j + nsep
86 else:
87 j = j + 1
88 res.append(s[i:])
89 return res
90
Guido van Rossumfac38b71991-04-07 13:42:19 +000091# Join words with spaces between them
92def join(words):
Guido van Rossum18fc5691992-11-26 09:17:19 +000093 return joinfields(words, ' ')
Guido van Rossumfac38b71991-04-07 13:42:19 +000094
95# Join fields with separator
96def joinfields(words, sep):
97 res = ''
98 for w in words:
99 res = res + (sep + w)
100 return res[len(sep):]
101
Guido van Rossumd3166071993-05-24 14:16:22 +0000102# Find substring, raise exception if not found
Guido van Rossumb6775db1994-08-01 11:34:53 +0000103def index(s, sub, i = 0):
Guido van Rossum710c3521994-08-17 13:16:11 +0000104 res = find(s, sub, i)
105 if res < 0:
106 raise ValueError, 'substring not found in string.index'
107 return res
Guido van Rossumd3166071993-05-24 14:16:22 +0000108
Guido van Rossume65cce51993-11-08 15:05:21 +0000109# Find last substring, raise exception if not found
Guido van Rossumb6775db1994-08-01 11:34:53 +0000110def rindex(s, sub, i = 0):
Guido van Rossum710c3521994-08-17 13:16:11 +0000111 res = rfind(s, sub, i)
112 if res < 0:
113 raise ValueError, 'substring not found in string.index'
114 return res
Guido van Rossumb6775db1994-08-01 11:34:53 +0000115
116# Count non-overlapping occurrences of substring
117def count(s, sub, i = 0):
118 if i < 0: i = i + len(s)
119 n = len(sub)
120 m = len(s) + 1 - n
121 if n == 0: return m-i
122 r = 0
123 while i < m:
124 if sub == s[i:i+n]:
125 r = r+1
126 i = i+n
127 else:
128 i = i+1
Guido van Rossume65cce51993-11-08 15:05:21 +0000129 return r
130
Guido van Rossumd3166071993-05-24 14:16:22 +0000131# Find substring, return -1 if not found
Guido van Rossumb6775db1994-08-01 11:34:53 +0000132def find(s, sub, i = 0):
Guido van Rossum710c3521994-08-17 13:16:11 +0000133 if i < 0: i = i + len(s)
134 n = len(sub)
135 m = len(s) + 1 - n
136 while i < m:
137 if sub == s[i:i+n]: return i
138 i = i+1
139 return -1
Guido van Rossumc6360141990-10-13 19:23:40 +0000140
Guido van Rossume65cce51993-11-08 15:05:21 +0000141# Find last substring, return -1 if not found
Guido van Rossumb6775db1994-08-01 11:34:53 +0000142def rfind(s, sub, i = 0):
Guido van Rossum710c3521994-08-17 13:16:11 +0000143 if i < 0: i = i + len(s)
144 n = len(sub)
145 m = len(s) + 1 - n
146 r = -1
147 while i < m:
148 if sub == s[i:i+n]: r = i
149 i = i+1
150 return r
Guido van Rossume65cce51993-11-08 15:05:21 +0000151
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000152# Convert string to float
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000153def atof(str):
154 import regex
155 sign = ''
156 s = str
157 if s and s[0] in '+-':
158 sign = s[0]
159 s = s[1:]
Guido van Rossum710c3521994-08-17 13:16:11 +0000160 if not s:
161 raise ValueError, 'non-float argument to string.atof'
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000162 while s[0] == '0' and len(s) > 1 and s[1] in digits: s = s[1:]
163 if regex.match('[0-9]*\(\.[0-9]*\)?\([eE][-+]?[0-9]+\)?', s) != len(s):
Guido van Rossum710c3521994-08-17 13:16:11 +0000164 raise ValueError, 'non-float argument to string.atof'
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000165 try:
Guido van Rossumb6775db1994-08-01 11:34:53 +0000166 return float(eval(sign + s))
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000167 except SyntaxError:
Guido van Rossum710c3521994-08-17 13:16:11 +0000168 raise ValueError, 'non-float argument to string.atof'
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000169
Guido van Rossumc6360141990-10-13 19:23:40 +0000170# Convert string to integer
Guido van Rossumc6360141990-10-13 19:23:40 +0000171def atoi(str):
Guido van Rossum2d4aa4f1992-08-06 22:33:41 +0000172 sign = ''
Guido van Rossumc6360141990-10-13 19:23:40 +0000173 s = str
Guido van Rossumc629d341992-11-05 10:43:02 +0000174 if s and s[0] in '+-':
Guido van Rossum2d4aa4f1992-08-06 22:33:41 +0000175 sign = s[0]
176 s = s[1:]
Guido van Rossum710c3521994-08-17 13:16:11 +0000177 if not s:
178 raise ValueError, 'non-integer argument to string.atoi'
Guido van Rossum2d4aa4f1992-08-06 22:33:41 +0000179 while s[0] == '0' and len(s) > 1: s = s[1:]
Guido van Rossumc6360141990-10-13 19:23:40 +0000180 for c in s:
Guido van Rossum710c3521994-08-17 13:16:11 +0000181 if c not in digits:
182 raise ValueError, 'non-integer argument to string.atoi'
Guido van Rossum2d4aa4f1992-08-06 22:33:41 +0000183 return eval(sign + s)
Guido van Rossumc6360141990-10-13 19:23:40 +0000184
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000185# Convert string to long integer
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000186def atol(str):
187 sign = ''
188 s = str
189 if s and s[0] in '+-':
190 sign = s[0]
191 s = s[1:]
Guido van Rossum710c3521994-08-17 13:16:11 +0000192 if not s:
193 raise ValueError, 'non-integer argument to string.atol'
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000194 while s[0] == '0' and len(s) > 1: s = s[1:]
195 for c in s:
Guido van Rossum710c3521994-08-17 13:16:11 +0000196 if c not in digits:
197 raise ValueError, 'non-integer argument to string.atol'
Guido van Rossume61fa0a1993-10-22 13:56:35 +0000198 return eval(sign + s + 'L')
199
Guido van Rossumc6360141990-10-13 19:23:40 +0000200# Left-justify a string
201def ljust(s, width):
Guido van Rossumfac38b71991-04-07 13:42:19 +0000202 n = width - len(s)
203 if n <= 0: return s
204 return s + ' '*n
Guido van Rossumc6360141990-10-13 19:23:40 +0000205
206# Right-justify a string
207def rjust(s, width):
Guido van Rossumfac38b71991-04-07 13:42:19 +0000208 n = width - len(s)
209 if n <= 0: return s
210 return ' '*n + s
Guido van Rossumc6360141990-10-13 19:23:40 +0000211
212# Center a string
213def center(s, width):
Guido van Rossumfac38b71991-04-07 13:42:19 +0000214 n = width - len(s)
215 if n <= 0: return s
216 half = n/2
217 if n%2 and width%2:
218 # This ensures that center(center(s, i), j) = center(s, j)
219 half = half+1
220 return ' '*half + s + ' '*(n-half)
Guido van Rossumc6360141990-10-13 19:23:40 +0000221
222# Zero-fill a number, e.g., (12, 3) --> '012' and (-3, 3) --> '-03'
223# Decadent feature: the argument may be a string or a number
224# (Use of this is deprecated; it should be a string as with ljust c.s.)
225def zfill(x, width):
Guido van Rossumbdfcfcc1992-01-01 19:35:13 +0000226 if type(x) == type(''): s = x
Guido van Rossumc6360141990-10-13 19:23:40 +0000227 else: s = `x`
228 n = len(s)
229 if n >= width: return s
230 sign = ''
Guido van Rossum333c2e01991-08-16 13:29:03 +0000231 if s[0] in ('-', '+'):
232 sign, s = s[0], s[1:]
Guido van Rossumc6360141990-10-13 19:23:40 +0000233 return sign + '0'*(width-n) + s
Guido van Rossum6ff2e901992-03-27 15:13:31 +0000234
235# Expand tabs in a string.
236# Doesn't take non-printing chars into account, but does understand \n.
237def expandtabs(s, tabsize):
238 res = line = ''
239 for c in s:
240 if c == '\t':
241 c = ' '*(tabsize - len(line)%tabsize)
242 line = line + c
243 if c == '\n':
244 res = res + line
245 line = ''
246 return res + line
Guido van Rossum2db91351992-10-18 17:09:59 +0000247
248
249# Try importing optional built-in module "strop" -- if it exists,
250# it redefines some string operations that are 100-1000 times faster.
Guido van Rossum8e2ec561993-07-29 09:37:38 +0000251# It also defines values for whitespace, lowercase and uppercase
252# that match <ctype.h>'s definitions.
Guido van Rossum2db91351992-10-18 17:09:59 +0000253
254try:
255 from strop import *
Guido van Rossum8e2ec561993-07-29 09:37:38 +0000256 letters = lowercase + uppercase
Guido van Rossumb6775db1994-08-01 11:34:53 +0000257except ImportError:
258 pass # Use the original, slow versions