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:
text = "split-this-text"
words = text.split("-")
print(words) # ['split', 'this', 'text']
Practical example
In this example, we split the text
string into the words
list using split()
method.
text = "split-this-text"
words = text.split("-")
print(words) # ['split', 'this', 'text']
Output:
['split', 'this', 'text']