< br/>
My name is Jonas< br/>
< br/>
How to extract: My name is Jonas
Using regex :
regex = re.findall(r"< br/>\ n.*< br/>\ n< br/>")
Added additional spaces cause otherwise stack would not able to read correctly. But overall code doesn`t do what i want.