I'm just starting with python regular expressions. I read many topics but can't adapt solutions to my problem.
I've got a file like this one :
**** FILE.NAME ***
Fisrt sentence
blablabla
blablabla
blablabla
blablabla
Second sentence
blablabla
blablabla
blablabla
blablabla
I'm looking for a regex expression to extract several text blocks of my file :
Fisrt sentence
blablabla
blablabla
blablabla
blablabla
Then :
Second sentence
blablabla
blablabla
blablabla
blablabla
with a separation of sentences and blabla blocks. I tried something like this but not working :
^(\w+[^\n]*?)(.*)\n{2}