I need to build the following string:
#<tr class="[^"]*">
<td><div class="grid_content sno"><span>[^"]*</span></div></td>
<td>
<center>
<div class="grid_content2 sno">
<span>
<img src="https://seriesblanco.com/banderas/es.png">
</span>
</div>
<center>
</td>
<td>
<div class="grid_content sno">
<span>
<a href="(.*?)" target="_blank">
<img src='/servidores/powvideo.jpg' width='[^"]*' height='[^"]*' /></a>
</span>
</div>
</td>
<td>
<div class="grid_content sno"><span>[^"]*</span>
</td>
<td>
<div class="grid_content sno"><span>[^"]*</span></td>
<td></td>
</tr>#
As you can see it has ""
and ''
quotes and I'm finding impossible to build a string like $string = *codeabove*
because it closes itself if I use one kind of quote or another, is there another one?