I\'m looking for the best approach for string find and replace in Java.
This is a sentence: \"My name is Milan, people know me as Milan Vasic\".
I want to repla
Simply include the Apache Commons Lang JAR and use the org.apache.commons.lang.StringUtils class. You'll notice lots of methods for replacing Strings safely and efficiently.
You can view the StringUtils API at the previously linked website.
"Don't reinvent the wheel"