An obvious way to handle String search and replace is
String s = "This will go over well!";
s = s.replace("go", "not go");
I wonder .. can the same be done using regex package? Are there benefits from using it?
Can something along the lines of s/go/not go/g exist?