Computer >> Computer tutorials >  >> Programming >> Python

How to divide a string by line break or period with Python regular expressions?


The following code splits given string by a period and a line break as follows

Example

import re
s = """Hi. It's nice meeting you.
My name is Jason."""
result = re.findall(r'[^\s\.][^\.\n]+', s)
print result

Output

This gives the following output

['Hi', "It's nice meeting you", 'My name is Jason']