split string including delimiter python code example
Example 1: how to split a string in python with multiple delimiters
>>> a='Beautiful, is; better*than\nugly'
>>> import re
>>> re.split('; |, |\*|\n',a)
['Beautiful', 'is', 'better', 'than', 'ugly']
Example 2: separate a string in python
string = "A B C D"
string2 = "E-F-G-H"
stringlist = string.split()
stringlist2 = string2.split("-", 3)
Example 3: python split string keep delimiter
line = "<html><head>"
d = ">"
s = [e+d for e in line.split(d) if e]
print(s)