I have about 100 lines that look like the below:
assertEquals(results.get(0).getID(),1);
They all start with assertEquals and contain two arguments. Im looking f
I don't know how to do it in Eclipse, but if you happen to also have a vim installed you might load your file in it and do
vim
:%s/\(assertEquals(\)\(.*\),\(.*\))/\1\3,\2)/