EN
Python - split string by hyphen sign (minus sign - ascii 45 code)
0 points
In this article, we would like to show you how to split string by hyphen sign in Python.
Quick solution:
xxxxxxxxxx
1
text = "split-this-text"
2
3
words = text.split("-")
4
print(words) # ['split', 'this', 'text']
In this example, we split the text
string into the words
list using split()
method.
xxxxxxxxxx
1
text = "split-this-text"
2
3
words = text.split("-")
4
print(words) # ['split', 'this', 'text']
Output:
xxxxxxxxxx
1
['split', 'this', 'text']