使用 python 2.7.3、urllib 和 re,我正在寻找包含以下内容的 url:
href="/dirone/Dir_Two/dirthree/"
url 可能在哪里,例如:
href="/dirone/Dir_Two/dirthree/5678-random-stuff-here-letters-and-numbers"
我想回来:
"/dirone/Dir_Two/dirthree/5678-random-stuff-here-letters-and-numbers"
使用这个工具:
http://www.jslab.dk/tools.regex.php
我生成的正则表达式为:
/^href\="\/dirone\/Dir_Two\/dirthree\/"$/im
因此,此正则表达式是否可以通过以下方式与 python 和 re 一起使用:
object_name = re.findall('/^href\="\/dirone\/Dir_Two\/dirthree\/"$/im',url)
for single_url in object_name:
do something