Find and replace all occurrences of the string : String replace « Data Type « Java






Find and replace all occurrences of the string

     

/*  
 * Copyright 2008-2010 the original author or authors 
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
//package org.kaleidofoundry.core.util;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.Reader;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.StringTokenizer;


/**
 * String Helper static method
 * 
 * @author Jerome RADUGET
 */
public abstract class StringHelper {
     /**
      * Find and replace all occurrences of the string <br/>
      * 
      * <pre>
      * <b>Assertions :</b>
      * assertNull(StringHelper.replaceAll(null, null, null));
      * assertNull(StringHelper.replaceAll(null, &quot;a&quot;, &quot;b&quot;));
      * assertEquals(&quot;anullc&quot;, StringHelper.replaceAll(&quot;abc&quot;, &quot;b&quot;, null));
      * assertEquals(&quot;&quot;, StringHelper.replaceAll(&quot;&quot;, &quot;&quot;, &quot;&quot;));
      * assertEquals(&quot;foo&quot;, StringHelper.replaceAll(&quot;a&quot;, &quot;a&quot;, &quot;foo&quot;));
      * assertEquals(&quot;.foo&quot;, StringHelper.replaceAll(&quot;.a&quot;, &quot;a&quot;, &quot;foo&quot;));
      * assertEquals(&quot;foo.&quot;, StringHelper.replaceAll(&quot;a.&quot;, &quot;a&quot;, &quot;foo&quot;));
      * assertEquals(&quot;..foo...foo..foo&quot;, StringHelper.replaceAll(&quot;..a...a..a&quot;, &quot;a&quot;, &quot;foo&quot;));
      * assertEquals(&quot;foo...foo..foo.&quot;, StringHelper.replaceAll(&quot;ab...ab..ab.&quot;, &quot;ab&quot;, &quot;foo&quot;));
      * </pre>
      * 
      * @param source source string
      * @param findToken string to search for
      * @param replaceToken string to replace found tokens with
      * @return the modified string
      */
     public static String replaceAll(String source, final String findToken, final String replaceToken) {
    if (source == null) { return null; }
    StringBuilder sb = null;
    int pos;
    do {
       if ((pos = source.indexOf(findToken)) < 0) {
      break;
       }
       if (sb == null) {
      sb = new StringBuilder();
       }
       if (pos > 0) {
      sb.append(source.substring(0, pos));
       }
       sb.append(replaceToken);
       source = source.substring(pos + findToken.length());
    } while (source.length() > 0);

    if (sb == null) {
       return source;
    } else {
       sb.append(source);
       return sb.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.Returns a new string resulting from replacing all occurrences of oldStr in this string with newStr.