更新時間:2021年03月05日17時55分 來源:傳智教育 瀏覽次數(shù):
import re example = "<li>goods</li><li>name</li>" # 貪婪模式 greed_pattern = re.compile("<li>.*</li>") # 非貪婪模式 not_greed_pattern = re.compile("<li>.*?</li>") greed_result = greed_pattern.search(example) not_greed_result = not_greed_pattern.search(example) print(f"貪婪模式:{greed_result.group()}") print(f"非貪婪模式:{not_greed_result.group()}")(4)結(jié)合項目中使用