programming-examples/python/Regular_Expression/Split a string with multiple delimiters.py

6 lines
393 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
# A delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions in plain text or other data streams. An example of a delimiter is the comma character, which acts as a field delimiter in a sequence of comma-separated values.
import re
text = 'The quick brown\nfox jumps*over the lazy dog.'
print(re.split('; |, |\*|\n',text))