本文介绍了使用eclipse查找并替换全部交换参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有大约100行,如下所示:
I have about 100 lines that look like the below:
assertEquals(results.get(0).getID(),1);
assertEquals(results.get(0).getID(),1);
它们都以assertEquals开头,并包含两个参数。我寻找一种方法来使用find和replace来替换所有这些行的参数。
They all start with assertEquals and contain two arguments. Im looking for a way to use find and replace all to swap the arguments of all these lines.
谢谢
推荐答案
使用以下regexp来查找:
use the following regexp to find:
assertEquals\((.*),(.*)\);
此替换值:
assertEquals(\2,\1);
正则表达式表示assertEquals(其次是第一组字符,后跟一个逗号)第二组chars后面跟着);。
替换值意味着assertEquals(其次是第二组跟踪的字符。
这篇关于使用eclipse查找并替换全部交换参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!