Replaces all occurences of a substring inside a string : String replace « Data Type « Java






Replaces all occurences of a substring inside a string

    
/**************************************************************************************
 * Copyright (c) Jonas Bonr, Alexandre Vasseur. All rights reserved.                 *
 * http://aspectwerkz.codehaus.org                                                    *
 * ---------------------------------------------------------------------------------- *
 * The software in this package is published under the terms of the LGPL license      *
 * a copy of which has been included with this distribution in the license.txt file.  *
 **************************************************************************************/


import java.util.List;
import java.util.ArrayList;

/**
 * Utility methods for strings.
 *
 * @author <a href="mailto:jboner@codehaus.org">Jonas Bonr </a>
 */
public class Strings {


  /**
   * Replaces all occurences of a substring inside a string.
   *
   * @param str      the string to search and replace in
   * @param oldToken the string to search for
   * @param newToken the string to replace newToken
   * @return the new string
   */
  public static String replaceSubString(final String str, final String oldToken, final String newToken) {
      return replaceSubString(str, oldToken, newToken, -1);
  }

  /**
   * Replaces all occurences of a substring inside a string.
   *
   * @param str      the string to search and replace in
   * @param oldToken the string to search for
   * @param newToken the string to replace newToken
   * @param max      maximum number of values to replace (-1 => no maximum)
   * @return the new string
   */
  public static String replaceSubString(final String str, final String oldToken, final String newToken, int max) {
      if ((str == null) || (oldToken == null) || (newToken == null) || (oldToken.length() == 0)) {
          return str;
      }
      StringBuffer buf = new StringBuffer(str.length());
      int start = 0;
      int end = 0;
      while ((end = str.indexOf(oldToken, start)) != -1) {
          buf.append(str.substring(start, end)).append(newToken);
          start = end + oldToken.length();
          if (--max == 0) {
              break;
          }
      }
      buf.append(str.substring(start));
      return buf.toString();
  }

   
}

   
    
    
    
  








Related examples in the same category

1.String Replace
2.String Replace 2String Replace 2
3.Replace \r\n with the
tag
4.Unaccent letters
5.Remove leading white space from a string
6.Remove leading whitespace a String using regular expressions
7.Remove trailing whitespace
8.Replace multiple whitespaces between words with single blank
9.Replacing Characters in a String: replace() method creates a new string with the replaced characters.
10.Replacing Substrings in a String
11.Replace characters in string
12.String.replaceAll() can be used with String
13.Replaces all occurrences of given character with new one and returns new String object.
14.Replaces only first occurrences of given String with new one and returns new String object.
15.Replaces all occurrences of given String with new one and returns new String object.
16.Only replace first occurence
17.Optimize String operations
18.Replace every occurrences of a string within a string
19.Replace/remove character in a String: replace all occurrences of a given character
20.To replace a character at a specified position
21.Find, replace and remove strings
22.Java Implementation of Pythons string.replace()
23.Replace New Lines
24.Replace string
25.Replace strings
26.Replace substrings within string
27.Replaces each substring of this string that matches toReplace
28.Replaces substrings
29.Replaces all instances of oldString with newString in string
30.Substitute sub-strings in side of a string
31.Replace string
32.Returns the given string with all found oldSubStr replaced by newSubStr.
33.Returns a new string resulting from replacing all occurrences of oldStr in this string with newStr.
34.Find and replace all occurrences of the string