Visual Studio 2010 高级查找和替换?

发布于 2024-12-10 04:10:26 字数 653 浏览 0 评论 0原文

与此问题相关:创建一个新的jquery链式方法,我该怎么做在 Visual Studio(甚至 Notepad++ 或其他东西)中进行高级查找和替换,以查找:

Foo($("selector"));

并替换为:

$("selector").foo();

这是因为我创建了一个新的 jQuery 链接方法:

$("#SaveButton").click(function () {
    $("#SubTotal").foo();
    $("#TaxTotal").foo();
    $("#Total").foo();
});

要替换它

$("#SaveButton").click(function () {
    Foo($("#SubTotal"));
    Foo($("#TaxTotal"));
    Foo($("#Total"));
});

现在我需要查找并替换 的所有实例旧方法调用使用新的链式方法。

Related to this question: Create a new jquery chained method, how do I do an advanced find and replace in Visual Studio (or even Notepad++ or something else) to find:

Foo($("selector"));

And replace with:

$("selector").foo();

This is because I've created a new jQuery chained method:

$("#SaveButton").click(function () {
    $("#SubTotal").foo();
    $("#TaxTotal").foo();
    $("#Total").foo();
});

To replace this

$("#SaveButton").click(function () {
    Foo($("#SubTotal"));
    Foo($("#TaxTotal"));
    Foo($("#Total"));
});

And now I need to find and replace all instances of the old method call with the new chained method.

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

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

发布评论

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

评论(1

守望孤独 2024-12-17 04:10:26

在“查找”选项中使用正则表达式查找/替换对话框。

希望有帮助。

注意:我一想到要刺破你的特定表情就疯狂尖叫,但这实际上只是一些比赛的转变,所以应该是可行的。

Use regular expressions in the Find options of Find/Replace dialog.

Hope that helps.

NB: I run screaming madly at the mere notion of having a stab at your particular expression but it is really just a transform of a number of matches so should be doable.

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