I have a string that has allot of blank lines, I need to return the chunk of that string that is found before the first blank line in it. For Example:
aaaaa
bbbb
1223
212
fff
The returned string should be:
aaaaa
bbbb
1223
Note: I am using Python 2.7