I have generated unordered list which contains values (date representation) which I want to grab dynamically.
Html source looks like this
<ul>
<li style="padding-left:7px;">
<a href="/Repp/ByDay?day=20140808&sport=0&competition=0">fri 08.08.14</a>
<a class="..." target="_blank"...></a>
</li>
I want to grab value 20140808 between
<a href="/Repp/ByDay?day=
and
&sport
UPDATE
I want to grab first value from this unordered list.