使用Python正則表達式,我想知道如何使用Python Regex匹配以下字符串?
- 如何匹配模式
("Exercises...)
和("Chapter...)
- 如何更換
("Exercises...)
與("Exercises...))
和("Chapter...)
和("Chapter...
。
例如:
("Exercises, 31" "#42")
轉化爲("Exercises, 31" "#42"))
("Chapter 2 I Positive Borel Measures, 33" "#44")
到("Chapter 2 I Positive Borel Measures, 33" "#44"
感謝和問候!
不完全確定你想做什麼......在練習之後添加一個')'並在'章節'之後刪除它? – Robus 2011-04-08 18:37:51
@Robus:是的。這就是我想要做的。 – Tim 2011-04-08 18:39:19