I'm working on a website scrape script. I need to get just a text between the tags, the problem is that some of the tags are not closed. Here's an example:
Code: Select all
<tag>some text</tag>
<tag>more text
<tag>even more text</tag>Code: Select all
#<tag>(.*?)#is