更新時(shí)間:2021年03月05日17時(shí)55分 來(lái)源:傳智教育 瀏覽次數(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é)合項(xiàng)目中使用
complie()函數(shù)預(yù)編譯正則表達(dá)式
Python正則表達(dá)式re模塊常用函數(shù)有哪些?
HTTP通信機(jī)制中的一次完整通信過(guò)程的7個(gè)步驟
2021-02-26什么是孤兒進(jìn)程和僵尸進(jìn)程?如何避免僵尸進(jìn)程?
2021-02-26Python實(shí)戰(zhàn)開(kāi)發(fā)項(xiàng)目視頻教程:美多商城開(kāi)發(fā)實(shí)戰(zhàn)【傳智教育】
2021-02-22NumPy數(shù)組有幾種創(chuàng)建方法?
2021-02-03complie()函數(shù)預(yù)編譯正則表達(dá)式
2021-01-28Python的面向?qū)ο笈c面向編程有什么區(qū)別?
2021-01-28北京校區(qū)