2016-09-26 10 views
-2

src、css、href、htmlページのリンクを取り、テキストファイルに保存する必要があります。正規表現を使ってhref、src、cssをリンクする方法python

私は正規表現(正規表現)で行う必要があります。 ありがとう!ここで

+4

何か試してみてください –

+0

私たちがここで行うことは、あなたのコードがなぜウォークリングしていないのかを教えてくれることです。コードなし? Can not help ... – holdenweb

+0

あなたはそこを通過することができますhttp://stackoverflow.com/questions/499345/regular-expression-to-extract-url-from-an-html-link –

答えて

0
import re 

p = re.compile(ur'.*(src|css|href|a html).*') 

test_str1 = '<a html>' 
test_str2 = 'String without any tags' 

if re.match(p, test_str1) is not None: 
    print test_str1 

if re.match(p, test_str2) is not None: 
    print test_str2 
>> <a html> 

は、私はあなたがここに正規表現の部分を理解してそうでない場合と仮定のpython 2.7、 ためのソリューションは、あなたの正規表現をテストするために使用することができます良いチュートリアルsiteです。

+0

私は、バージョン3.5の場合:/ – Mangux

関連する問題