Visual Studio 2010 高级查找和替换?
与此问题相关:创建一个新的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“查找”选项中使用正则表达式查找/替换对话框。
希望有帮助。
注意:我一想到要刺破你的特定表情就疯狂尖叫,但这实际上只是一些比赛的转变,所以应该是可行的。
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.