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

Updated on: 16-Dec-2019

271 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements