有一个 regx 示例:“一二”使用此 regx 到 \b(\w+)(\s)(\w+)\b 替换为 $3$2$1 然后得到“二一”现在我想用python re.sub:
s="one two"
print re.sub(r"\b(\w+)(\s)(\w+)\b","$3$2$1",s)
这个输出 $3$2$1,而不是“两个一个”。我怎么能在 python 中做到这一点?
有一个 regx 示例:“一二”使用此 regx 到 \b(\w+)(\s)(\w+)\b 替换为 $3$2$1 然后得到“二一”现在我想用python re.sub:
s="one two"
print re.sub(r"\b(\w+)(\s)(\w+)\b","$3$2$1",s)
这个输出 $3$2$1,而不是“两个一个”。我怎么能在 python 中做到这一点?