IntelliJ Find and Replace with regular expressions
Regular expressions are not my forte, but never the less very useful. Recently I faced this fictional code snippet: var a = someFunc(b, c); //..... var d = someFunc(b, d); Almost a gazillion of calls to someFunc needed to be replaced with otherFunc. Cue big gasp! As always, IntelliJ is your go-to companion you always can rely on. I already noticed the regex checkbox in the Find/Replace dialog. Now it’s time to put this thing into practice....