forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplit.py
More file actions
51 lines (37 loc) · 1.23 KB
/
Copy pathsplit.py
File metadata and controls
51 lines (37 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
def split(string: str, separator: str = " ") -> list:
"""
Will split the string up into all the values separated by the separator
(defaults to spaces)
>>> split("apple#banana#cherry#orange",separator='#')
['apple', 'banana', 'cherry', 'orange']
>>> split("Hello there")
['Hello', 'there']
>>> split("11/22/63",separator = '/')
['11', '22', '63']
>>> split("12:43:39",separator = ":")
['12', '43', '39']
>>> split(";abbb;;c;", separator=';')
['', 'abbb', '', 'c', '']
>>> split("a--b--c", separator="--")
['a', 'b', 'c']
>>> split("apple##banana##cherry", separator="##")
['apple', 'banana', 'cherry']
"""
split_words = []
separator_length = len(separator)
if separator_length == 0:
return [string]
last_index = 0
index = 0
while index < len(string):
if string[index : index + separator_length] == separator:
split_words.append(string[last_index:index])
last_index = index + separator_length
index += separator_length
else:
index += 1
split_words.append(string[last_index:])
return split_words
if __name__ == "__main__":
from doctest import testmod
testmod()