w3resource

Python: Split a string with multiple delimiters

Python Regular Expression: Exercise-47 with Solution

Write a Python program to split a string with multiple delimiters.

Note : 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.

Sample Solution:

Python Code:

import re
text = 'The quick brown\nfox jumps*over the lazy dog.'
print(re.split('; |, |\*|\n',text))

Sample Output:

['The quick brown', 'fox jumps', 'over the lazy dog.'] 

Pictorial Presentation:

Python: Regular Expression - Split a string with multiple delimiters.

Flowchart:

Flowchart: Regular Expression - Split a string with multiple delimiters.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find all adverbs and their positions in a given sentence.
Next: Write a Python program to check a decimal with a precision of 2.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/re/python-re-exercise-47.php