Alright, so basically I'm trying to scrape a lyrics site.
The HTML on the site looks like this
What expression should I use for this? I'm using
but it doesn't seem to work.
Any suggestions are appreciated
The HTML on the site looks like this
Code:
<TD rowspan=2>
<a href="blahblah">test</a><br>
<a href="blahblah">test</a><br>
<a href="blahblah">test</a><br>
<a href="blahblah">test</a><br></TD>
</TR>
Code:
<TD rowspan=2 (.*)>(.*)</TD>
</TR>|s
Any suggestions are appreciated