How would one write a regular expression to use in python to split paragraphs?
A paragraph is defined by 2 linebreaks (\\n). But one can have any amount of spaces/ta
Almost the same, but using non-greedy quantifiers and taking advantage of the whitespace sequence.
\s*?\n\s*?\n\s*?