Replace Matches Reusing Parts of the Match (替换重新使用部分匹配的匹配)

前端之家收集整理的这篇文章主要介绍了Replace Matches Reusing Parts of the Match (替换重新使用部分匹配的匹配)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_502_0@需求:

@H_502_0@将result=123变成123=result

@H_502_0@方法

@H_502_0@1. Python

@H_502_0@a.

@H_502_0@import re

@H_502_0@subject = "result=123"

@H_502_0@reobj = re.compile(r"(\w+)=(\w+)")

@H_502_0@result = reobj.sub(r"\2=\1",subject)

@H_502_0@print result

@H_502_0@

@H_502_0@b.

@H_502_0@import re

@H_502_0@subject = "result=123"

@H_502_0@reobj = re.compile(r"(?P<left>\w+)=(?P<right>\w+)")

@H_502_0@result = reobj.sub(r"\g<right>=\g<left>",subject)

@H_502_0@print result

@H_502_0@

@H_502_0@2. Tcl

@H_502_0@set subject "result=123"

@H_502_0@regsub -all "(\\w+)=(\\w+)" $subject "\\2=\\1" result

@H_502_0@puts "$result"

原文链接:https://www.f2er.com/regex/361710.html

猜你在找的正则表达式相关文章