Python 正則表達式,re模塊,match匹配(默認從開頭匹配),分組

  單個字符: 數量詞: 匹配開頭、結尾: 匹配分組:   demo.py(正則表達式,match從開頭匹配,分組,分組別名): # coding=utf-8 import re # 小括號()表示分組 \1表示取出第一個分組中匹配的字符串。 ret = re.match(r"<(\w*)><(\w*)>.*</\2></\1>", "<html><h1>www.baidu.cn</h1></
相關文章
相關標籤/搜索