python網絡爬蟲之正則表達式(續)

RE庫的match對象 我們知道正則表達式庫的search match 方法調用之後它會返回一個match對象,match對象就是一次匹配的結果 它包含了很多匹配的相關信息 import re match=re.search(r'[1-9]\d{5}','xuanxuan387249') if match:     print(match) 我們可以用type(match)來檢查match的屬性
相關文章
相關標籤/搜索