hi all I have the string below:
test = '<tr> <stuff1> <tr><stuff2> </tr> </tr>'
and I would like python to return the following:
result=['<tr><stuff1><tr><stuff2></tr></tr>','<tr><stuff2></tr>']
I've tried re.finall('<tr>.+</tr>',test)
but that just returns the entire string ...
Thanks