what a regular expression to extract the text between two values?
in:
<office:annotation office:name="__Annotation__45582_97049284">
</office:annotation>
case 1 there can be an arbitrary text with any symbols
<office:annotation-end office:name="__Annotation__45582_97049284"/>
<office:annotation office:name="__Annotation__19324994_2345354">
</office:annotation>
case 2there can be an arbitrary text with any symbols
<office:annotation-end office:name="__Annotation__19324994_2345354"/>
out:
list = [
'case 1 there can be an arbitrary text with any symbols',
'case 2 there can be an arbitrary text with any symbols',
]