Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4840253

Add another overloaded replace() method to java.lang.String

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.4.1
    • core-libs
    • x86
    • windows_2000

      Name: nt126004 Date: 03/31/2003


      A DESCRIPTION OF THE REQUEST :
      Overloaded the current String replace(char oldChar, char newChar) method in java.lang.String with:

      String replace(String oldSubString, String newString)
                Returns a new string resulting from replacing all occurrences of oldSubString in this string with newString.

      I understand that there has been a replaceAll() method in J2SE 1.4, but many times, that would
      be an overkill for simple string replacement operations. Using Regex adds complexity to the
      program and so increases its memory footprint during execution. Adding another overloaded
      String.replace(String, String), to go in hand with String.replace(char, char), would simplify
      and expedite coding in many simple string manipulation/replacement operations.

      A review for Bug Id: 4834877 has gone through. That submission is for the StringBuffer.

      JUSTIFICATION :
      A lot of string manipulation operations involves string replacement, rather than mere character replacement. Because the situation is so frequently encountered, it's a nuisance to write that piece of codes everytime. Including this overload method will save developers time and codings.


      CUSTOMER SUBMITTED WORKAROUND :
          /**
           * String replacement
           *
           */
          String replace(String text, final String pattern, final String replace) {
              int startIndex = 0;
              int foundIndex;
              StringBuffer result = new StringBuffer();

              // Look for a pattern to replace
              while ((foundIndex = text.indexOf(pattern, startIndex)) >= 0) {
                  result.append(text.substring(startIndex, foundIndex));
                  result.append(replace);
                  startIndex = foundIndex + pattern.length();
              }
              result.append(text.substring(startIndex));
              return result.toString();
          }
      (Review ID: 182669)
      ======================================================================
      ###@###.### 11/4/04 19:23 GMT

            iris Iris Clark
            nthompsosunw Nathanael Thompson (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: