Languages
[Edit]
EN

Python - split string by hyphen sign (minus sign - ascii 45 code)

0 points
Created by:
Antonina-Trejo
327

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']
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - split string by hyphen sign

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join