您好,登錄后才能下訂單哦!
使用python怎么匹配url中是否存在IP地址,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
因為需要檢測一個一個鏈接中是否包含了IP地址,在這里需要使用到正則表達式 ,python完美的支持了正則表達式,在這里使用re模塊來完成,對正則表達式并不是很熟練,每次都是需要用的時候現查一下然后寫一下,這里給出來自己的代碼以及借鑒別人的匹配模式
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' 功能:對于給定的URL,檢測其中是否包含IP ''' import re def ip_exist_two(one_url): compile_rule = re.compile(r'(?<![\.\d])(?:\d{1,3}\.){3}\d{1,3}(?![\.\d])') match_list = re.findall(compile_rule, one_url) if match_list: print match_list else: print 'missing................' def ip_exist_one(one_url): compile_rule = re.compile(r'\d+[\.]\d+[\.]\d+[\.]\d+') match_list = re.findall(compile_rule, one_url) if match_list: print match_list else: print 'missing................' if __name__ == '__main__': ip_list = ['http://101.23.45.67/sd/sd.html','http://www.baidu.com', 'http://34.54.65.3/dsdfjkk.htm','http://dhj.fdjjd.com/78078979/dsdfjkk.htm'] for one_url in ip_list: ip_exist_one(one_url) print '****************************************************' for one_url in ip_list: ip_exist_two(one_url)
ip_exist_one(one_url)里面是自己的匹配模式,個人感覺更賤練一下,ip_exist_two(one_url)里面是網上提供的匹配IP的正則表達式,感覺比較繁雜一下,不過試驗了一下都是可以正確匹配出來結果的。
下面是打印出來的結果
['101.23.45.67'] missing................ ['34.54.65.3'] missing................ **************************************************** ['101.23.45.67'] missing................ ['34.54.65.3'] missing................
關于 使用python怎么匹配url中是否存在IP地址問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。