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