Python正規表示式在使用中會經常套用到字串替換的程式碼。這篇文章主要介紹了Python正規表示式如何進行字串替換,具有一定的參考價值,有興趣的小夥伴們可以參考一下。
Python正規表示式在使用中會經常套用到字串替換的程式碼。有很多人都不知道該如何解決這個問題,下面的程式碼就告訴你其實這個問題無比的簡單,希望你有所收穫。
1.取代所有符合的子字串以newstring取代subject中所有與正規表示式regex相符的子字串
result, number = re.subn(regex, newstring, subject)
2.取代所有符合的子字串(使用正規表示式物件)
rereobj = re.compile(regex) result, number = reobj.subn(newstring, subject)
Python字串拆分
reresult = re.split(regex, subject)
rereobj = re.compile(regex) result = reobj.split(subject)
if re.search(regex, subject): do_something() else: do_anotherthing()
if re.match(regex, subject): do_something() else: do_anotherthing()
match = re.search(regex, subject) if match: # match start: match.start() # match end (exclusive): match.end() # matched text: match.group() do_something() else: do_anotherthing()
以上是Python用正規表示式進行字串取代方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!