您如何使用正则表达式实现Markddown的emphasis
或bold
?
或者如何用\*\*(.*)\*\*
内的内容替换re ** **
?
答案 0 :(得分:3)
您可以使用re.sub()
:
import re
myRegex = re.compile(r"\*\*(.+?)\*\*")
string = "some **text** and some **more**"
output = myRegex.sub(r"\1", string)
答案 1 :(得分:2)