Returns a new string resulting from replacing all occurrences of oldStr in this string with newStr. : String replace « Data Type « Java






Returns a new string resulting from replacing all occurrences of oldStr in this string with newStr.

     
/**
 * This software is provided as IS by Antilia-Soft SL.
 * Copyright 2006-2007.
 */
//package com.antilia.common.util;

public class StringUtils {
  /**
   * Returns a new string resulting from replacing all occurrences of oldStr in this string with newStr.
   * 
   * @param str
   * @param oldStr The old string
   * @param newStr the new string
   * @return
   */
  public static String replace(String str, String oldStr, String newStr) {
        if (str == null || str.length() == 0) {
            return str;
        }

    StringBuffer buffer = new StringBuffer();
    int pos = 0;
    int oldPos = 0;
    while ((pos = str.indexOf(oldStr, oldPos)) != -1) {
      buffer.append(str.substring(oldPos, pos));
      buffer.append(newStr);
      oldPos = pos + oldStr.length();
    }

    buffer.append(str.substring(oldPos, str.length()));

    return buffer.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 all occurences of a substring inside a string
28.Replaces each substring of this string that matches toReplace
29.Replaces substrings
30.Replaces all instances of oldString with newString in string
31.Substitute sub-strings in side of a string
32.Replace string
33.Returns the given string with all found oldSubStr replaced by newSubStr.
34.Find and replace all occurrences of the string