I have a text which looks like this:
<a href="/track/867059" itemprop="url" class="evt-click" data-target="track">
<span itemprop="name">Feel So Good </span>
</a>
<span class="featuring" data-target="featuring"></span>
</div>
</td>
<td class="artist">
<div class="wrapper ellipsis">
<a class="evt-click" href="/artist/7" data-target="artist" itemprop="byArtist">Jamiroquai</a>
</div>
</td>
<td class="album">
<div class="wrapper ellipsis">
<a class="evt-click" href="/album/98952" itemprop="inAlbum" data-target="album" >A Funk Odyssey</a>
</div>
</td>
<td class="length">
<div class="wrapper" data-target="length"></div>
</td>
<td class="popularity" title="By popularity:7.85 / 10">
<span class="note" data-target="note"></span>
</td>
<td class="added">
<div class="wrapper ellipsis timestamp" data-target="added">
05:23
and I want to get the 05:23
at the end of the text.
I tried these two patterns but they both failed.
(\d{2}:\d{2})$
data-target=\"added\">(.*?)$
What would the right pattern for this be?