Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用正则表达式,我该如何替换表单中的所有字符串:
.get_x()
和
.x
Ilspy 错误地反编译了程序集,并且所有属性都已替换为 get_ 和 set_ 以及函数调用。
\.get_(\w+)\(\)用替换匹配项.\1。
\.get_(\w+)\(\)
.\1
请注意,根据您使用的工具,您可能需要使用$1替换而不是\1. 显然,您可以执行类似的操作来替换.set_x(),或者您可以使用以下正则表达式同时执行它们:
$1
\1
.set_x()
\.[gs]et_(\w+)\(\)