How can I go about stripping the tags off this list:
['</span>A walk in the park<span class="html-tag"]
I managed to use (r'(?<=</span>)[^>]+') to remove the first tag but cant figure out how to remove the second. I know regular expressions ain't the way to go for dealing with tags but just want to figure this out.