可以使用什麼 Python 正則表示式代替 string.replace?
以下程式碼用 '' 替換給定字串中的所有字元
示例
import re line = 'this is a text with<[2> in between</[3> and then there are instances ... where the<[43> number ranges from 0-99</[76>.\ and there are many other lines in the text files \ with<[7> such tags </[8>' line = re.sub(r"</?\[\d+>", "", line) print line
輸出
給出以下輸出
this is a text with in between and then there are instances ... where the number ranges from 0-99.and there are many other lines in the text files with such tags
廣告
資料結構
網路
關係型資料庫管理系統 (RDBMS)
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
JavaScript
PHP