I\'m using Python regex to grab the body of a parsed email which may contain nothing or may look something like this:
Some coherent sentence.
You may use
(?s)\A.*?(?=\n_)
It matches
(?s)
re.DOTALL
\A
.*?
(?=\n_)
_