Pybites Logo

Get sentences from a text

Level: Advanced (score: 4)

Here is another fun regex exercise for you: it's easy to split text by newline using splitlines. Now try to split text by sentence.

Yes libraries like nltk makes this easy, but in this Bite you will do it with pure standard library and probably some regex.

We even learned a regex construct we had not used before. (Hint or maybe not. Maybe you know other ways to solve it!)

Keep calm and code in Python!