Advanced search/replace technique using regex and capture groups
Let's imaging you are working on some legacy Java project and stumbled upon this test class: public void test_Sum_Operator() { ... } public void test_Div_Operator() { ... } public void test_Mod_Operator() { ... } Tests are correct, but the naming convention is off here so you decided to change the method using camel…