Hi all,
I wanna extract a certain link from a web page using python regular expression.
The scenario is like this..
The code:
blah...
...
....
<div class="test" src="http://www.test.com/file.ext" style="top:0px;width:100%;"
....
blah
blah
blah
I wanna extract the url "http://www.test.com/file.ext" from the page using python regular expression.
Thanks in advance!