Visual Studio 使用正则表达式查找和替换

发布于 2024-12-08 03:02:50 字数 310 浏览 0 评论 0原文

我想用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

固执像三岁 2024-12-15 03:02:50

如果您使用的是 Microsoft 提供的支持普通 .NET 正则表达式的 Productivity Power Tools 扩展,则根据上面的正则表达式,您需要在文本框中输入的内容为:

<$2>

其中 $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:

<$2>

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.

失而复得 2024-12-15 03:02:50

查找内容:\[{Serialized}\]

替换为:<\1>

Find what: \[{Serializable}\]

Replace with: <\1>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文