I'm new to everything. Please help. I'm trying to crawl every
<div class="name"><a href="/v/name/idlike123123ksajdfk">name</a></div>
in a webpage. I want to catch the /v/name/idlike123123ksajdfk part. (Knowing that the
<div class="name"><a href="/v/
part is fixed) So I wrote the regular expression (can make you laugh):
~m#<div class="name"><a href="(/v/.*?)">#
It will be very helpful if you correct my stupid code.