有没有办法对组进行替换?
假设我正在尝试根据自定义格式将链接插入文本。所以,鉴于这样的事情:
This is a random text. This should be a [[link somewhere]]. And some more text at the end.
我想结束
This is a random text. This should be a <a href="/link_somewhere">link somewhere</a>. And some more text at the end.
我知道这'\[\[(.*?)\]\]'
会将方括号内的内容匹配为组 1,但是我想在组 1 上进行另一个替换,以便我可以用_
.
这在单个re.sub
正则表达式中可行吗?