Java Practices -> Replace a substring
Static Replacement Replacing one static String with another can be done in various ways: public final class ReplaceSubstring { /** * Simplest in Java 1.5, using the replace method, which * takes CharSequence objects. */ public static String replace15 ......