Extracting data from HTML
andrzejek
Polska
Hi there, i need to extract url from
<div class="path-element-first"><a href="/index.php/homepage">Forum</a></div>
result need to be
/index.php/homepage
<div class="path-element-first"><a href="/index.php/homepage">Forum</a></div>
result need to be
/index.php/homepage
and later i want to visit that link
How i can achieve this Sven? i already checked script manual many times, but maybe i am too stupid to understand how to achieve that
How i can achieve this Sven? i already checked script manual many times, but maybe i am too stupid to understand how to achieve that
Comments
[my_wanted_stuff]
type=extract
front=<div class="path-element-first">
front2=href="
back="
....
later you can use %my_wanted_stuff% to execute / get the content.