如何在 VS 宏中使用正则表达式?

发布于 2024-09-11 06:34:24 字数 174 浏览 6 评论 0原文

我想创建宏来替换。但我的问题是如何在 Visual Basic 的 Visual Studio 宏中使用正则表达式?

document.Selection.ReplacePattern("test{[^']+}test", "testAAAAtest")

不起作用。

I want create macro for replacing. But my problem is how to use regular expression in Visual Basic's macro for Visual Studio?

document.Selection.ReplacePattern("test{[^']+}test", "testAAAAtest")

Doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不即不离 2024-09-18 06:34:24

首先,正则表达式实际上匹配某些东西吗?首先在“查找”对话框中尝试一下。

其次,您需要告诉替换模式如何匹配 - 它本质上与查找/替换相同。

这里有一些可以帮助您开始的东西:(注意 vsFindOptions.vsFindOptionsRegularExpression)

Public Sub ReplaceRegEx()
    DTE.UndoContext.Open("RegEx Replace")
    Dim textSelection As TextSelection = DTE.ActiveDocument.Selection
    textSelection.ReplacePattern("test{[^']+}test", "testAAAAtest", vsFindOptions.vsFindOptionsRegularExpression)
    DTE.UndoContext.Close()
End Sub

First does the RegEx actually match something? Try it in the Find Dialog first.

Second you will need to tell the Replace Pattern how to match - It's essentially the same as doing a Find/Replace.

Here is something to get you started: (Note the vsFindOptions.vsFindOptionsRegularExpression)

Public Sub ReplaceRegEx()
    DTE.UndoContext.Open("RegEx Replace")
    Dim textSelection As TextSelection = DTE.ActiveDocument.Selection
    textSelection.ReplacePattern("test{[^']+}test", "testAAAAtest", vsFindOptions.vsFindOptionsRegularExpression)
    DTE.UndoContext.Close()
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文