<div><font style="BACKGROUND-COLOR:#c0c0c0">I have a long text, which should be splitted into some sections, where all sections have a pattern like following with different KEY. And the /n/r can not be used to split</font></div>

<div><font style="BACKGROUND-COLOR:#c0c0c0"></font> </div>
<div>I don't know whether this can be done easily, for example by using RE module</div>
<div> </div>
<div>[demo text starts]</div>
<div>a line we do not need</div>
<div>I am section axax     </div>
<div>I am section bbb, we can find that the first 2 lines of this section all startswith 'I am section'   </div>
<div>.....(and here goes many other text)...</div>
<div>let's continue to</div>
<div>
<div>let's continue, yeah</div>
<div>
<div>.....(and here goes many other text)...</div>
<div>I am using python</div>
<div>I am using perl</div>
<div>
<div>.....(and here goes many other text)...</div></div></div></div>
<div>[demo text ends]</div>
<div> </div>
<div>the above text should be splitted as a LIST with 3 items, and I also need to know the KEY for LIST is ['I am section', 'let's continue', 'I am using']:</div>
<div>lst=[</div>
<div>
<div>'''I am section axax     </div>
<div>I am section bbb, we can find that the first 2 lines of this section all startswith 'I am section'   </div>
<div>.....(and here goes many other text)...''',</div>
<div> </div>
<div>'''let's continue to</div>
<div>
<div>let's continue, yeah</div>
<div>
<div>.....(and here goes many other text)...''',</div>
<div> </div>
<div> </div>
<div>'''I am using python</div>
<div>I am using perl</div>
<div>
<div>.....(and here goes many other text)...'''</div>
<div>]</div></div></div></div></div>
<div> </div>
<div>I hope I have state myself clear.</div>
<div> </div>
<div>Regards </div>