Visual Studio 使用正则表达式查找和替换
我想用 VB.NET 替换 C# 属性,这意味着 [Serialized]
应该变为
。
模式 (\[)(.+)(\])
确实找到了结果,但我不知道如何用适当的括号替换第一个和最后一个组。
我阅读了此页面,但我不明白如何使用F&R 的大括号,我尝试用它包裹组,但没有成功。
I want to replace C# attributes with VB.NET, which means, [Serializable]
should become <Serializable>
.
The pattern (\[)(.+)(\])
does find the results but I don't know how to replace the first and the last groups with the appropriate parenthesis.
I read this page, but I didn't understand how to use the curly braces for F&R, I tried to wrap the groups with it but it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 Microsoft 提供的支持普通 .NET 正则表达式的 Productivity Power Tools 扩展,则根据上面的正则表达式,您需要在文本框中输入的内容为:
其中
$2
指第二个捕获组在你的正则表达式中,即括号之间的文本。请注意,这仅适用于 Productivity Power Tools 中的快速查找。 Visual Studio 中的普通查找/替换完全使用另一种语法。
If you are using the Productivity Power Tools extension from Microsoft that support normal .NET regexes, what you would put in the textbox for the replacement given your regular expression above is:
where
$2
refers to the second capture group in your regex, i.e. the text between the brackets.Note that this only works with the Quick Find from Productivity Power Tools though. The normal find/replace in Visual Studio use another syntax altogether.
查找内容:\[{Serialized}\]
替换为:<\1>
Find what: \[{Serializable}\]
Replace with: <\1>