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']