Replace string : String replace « Data Type « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Data Type » String replaceScreenshots 
Replace string
   
/*
 * Static String formatting and query routines.
 * Copyright (C) 2001-2005 Stephen Ostermiller
 * http://ostermiller.org/contact.pl?regarding=Java+Utilities
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * See COPYING.TXT for details.
 */


import java.util.HashMap;
import java.util.regex.Pattern;

/**
 * Utilities for String formatting, manipulation, and queries.
 * More information about this class is available from <a target="_top" href=
 * "http://ostermiller.org/utils/StringHelper.html">ostermiller.org</a>.
 *
 @author Stephen Ostermiller http://ostermiller.org/contact.pl?regarding=Java+Utilities
 @since ostermillerutils 1.00.00
 */
public class StringHelper {
  /**
   * Replace occurrences of a substring.
   *
   * StringHelper.replace("1-2-3", "-", "|");<br>
   * result: "1|2|3"<br>
   * StringHelper.replace("-1--2-", "-", "|");<br>
   * result: "|1||2|"<br>
   * StringHelper.replace("123", "", "|");<br>
   * result: "123"<br>
   * StringHelper.replace("1-2---3----4", "--", "|");<br>
   * result: "1-2|-3||4"<br>
   * StringHelper.replace("1-2---3----4", "--", "---");<br>
   * result: "1-2----3------4"<br>
   *
   @param s String to be modified.
   @param find String to find.
   @param replace String to replace.
   @return a string with all the occurrences of the string to find replaced.
   @throws NullPointerException if s is null.
   *
   @since ostermillerutils 1.00.00
   */
  public static String replace(String s, String find, String replace){
    int findLength;
    // the next statement has the side effect of throwing a null pointer
    // exception if s is null.
    int stringLength = s.length();
    if (find == null || (findLength = find.length()) == 0){
      // If there is nothing to find, we won't try and find it.
      return s;
    }
    if (replace == null){
      // a null string and an empty string are the same
      // for replacement purposes.
      replace = "";
    }
    int replaceLength = replace.length();

    // We need to figure out how long our resulting string will be.
    // This is required because without it, the possible resizing
    // and copying of memory structures could lead to an unacceptable runtime.
    // In the worst case it would have to be resized n times with each
    // resize having a O(n) copy leading to an O(n^2) algorithm.
    int length;
    if (findLength == replaceLength){
      // special case in which we don't need to count the replacements
      // because the count falls out of the length formula.
      length = stringLength;
    else {
      int count;
      int start;
      int end;

      // Scan s and count the number of times we find our target.
      count = 0;
      start = 0;
      while((end = s.indexOf(find, start)) != -1){
        count++;
        start = end + findLength;
      }
      if (count == 0){
        // special case in which on first pass, we find there is nothing
        // to be replaced.  No need to do a second pass or create a string buffer.
        return s;
      }
      length = stringLength - (count * (findLength - replaceLength));
    }

    int start = 0;
    int end = s.indexOf(find, start);
    if (end == -1){
      // nothing was found in the string to replace.
      // we can get this if the find and replace strings
      // are the same length because we didn't check before.
      // in this case, we will return the original string
      return s;
    }
    // it looks like we actually have something to replace
    // *sigh* allocate memory for it.
    StringBuffer sb = new StringBuffer(length);

    // Scan s and do the replacements
    while (end != -1){
      sb.append(s.substring(start, end));
      sb.append(replace);
      start = end + findLength;
      end = s.indexOf(find, start);
    }
    end = stringLength;
    sb.append(s.substring(start, end));

    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 strings
25. Replace substrings within string
26. Replaces all occurences of a substring inside a 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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.