10 examples of 'python split string by length' in Python

Every line of 'python split string by length' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
113def split(string, char):
114 """ Split a string with a char and return always two parts"""
115 string_list = string.split(char)
116 if len(string_list) == 1:
117 return None, None
118 return char.join(string_list[:-1]), string_list[-1]
7def split_string(s, n):
8 return [s[i*n:i*n+n] for i, j in enumerate(s[::n])]
143def _split_basic(string):
144 """
145 Split a string into a list of tuples of the form (key, modifier_fn,
146 explode) where modifier_fn is a function that applies the appropriate
147 modification to the variable.
148 """
149 tuples = []
150 for word in string.split(','):
151 # Attempt to split on colon
152 parts = word.split(':', 2)
153 key, modifier_fn, explode = parts[0], _identity, False
154 if len(parts) > 1:
155 modifier_fn = functools.partial(
156 _truncate, num_chars=int(parts[1]))
157 if word[len(word) - 1] == '*':
158 key = word[:len(word) - 1]
159 explode = True
160 tuples.append((key, modifier_fn, explode))
161 return tuples
126def split_string(input_string):
127 '''Split a string to a list and strip it
128 :param input_string: A string that contains semicolons as separators.
129 '''
130 string_splitted = input_string.split(';')
131 # Remove whitespace at the beginning and end of each string
132 strings_striped = [string.strip() for string in string_splitted]
133 return strings_striped
1287def split(a, sep=None, maxsplit=None):
1288 """
1289 For each element in `a`, return a list of the words in the
1290 string, using `sep` as the delimiter string.
1291
1292 Calls `str.split` element-wise.
1293
1294 Parameters
1295 ----------
1296 a : array_like of str or unicode
1297
1298 sep : str or unicode, optional
1299 If `sep` is not specified or `None`, any whitespace string is a
1300 separator.
1301
1302 maxsplit : int, optional
1303 If `maxsplit` is given, at most `maxsplit` splits are done.
1304
1305 Returns
1306 -------
1307 out : ndarray
1308 Array of list objects
1309
1310 See also
1311 --------
1312 str.split, rsplit
1313
1314 """
1315 # This will return an array of lists of different sizes, so we
1316 # leave it as an object array
1317 return _vec_string(
1318 a, object_, 'split', [sep] + _clean_args(maxsplit))
22def split_len(self, seq, length):
23 return [seq[i:i + length] for i in range(0, len(seq), length)]
285def rsplit(a_string, sep=None, maxsplit=None):
286 parts = a_string.split(sep)
287 if maxsplit is None or len(parts) <= maxsplit:
288 return parts
289 maxsplit_index = len(parts) - maxsplit
290 non_splitted_part = sep.join(parts[:maxsplit_index])
291 splitted = parts[maxsplit_index:]
292 return [non_splitted_part] + splitted
65def split(self, string):
66 return self._name + ".split(\"" + string + "\")"
20def short_string(string, length=16):
21 if len(string) <= length:
22 return string;
23 string = string[0:length - 3]
24 bits = string.split()
25 if len(bits[-1]) < 3:
26 bits.pop()
27 return '%s...' % (' '.join(bits))
138def test_split_string_after_returns_original_string_when_chunksize_equals_string_size_plus_one():
139 str_ = 'foobar2000' * 2
140 splitter = split_string_after(str_, len(str_) + 1)
141 split = [chunk for chunk in splitter]
142 assert [str_] == split

Related snippets