Privacy Policy Terms Of Use. Copyright © 2006-2010 Java Tutorials and Examples.
Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.
- /*
- Java String replace example.
- This Java String Replace example describes how replace method of java String
- class can be used to replace character or substring by new one.
- */
- public class JavaStringReplaceExample{
- public static void main(String args[]){
- /*
- Java String class defines three methods to replace character or
- substring from the given Java String object.
- 1) String replace(int oldChar, int newChar)
- This method replaces a specified character with new character
- and returns a new string object.
- 2) String replaceFirst(String regularExpression, String newString)
- Replaces the first substring of this string that matches the
- given regular expression with the given new string.
- 3) String replaceAll(String regex, String replacement)
- Replaces the each substring of this string that matches the
- given regular expression with the given new string.
- */
- String str="Replace Region";
- /*
- Replaces all occurrences of given character with new one
- and returns new String object.
- */
- System.out.println(str.replace( 'R','A' ));
- /*
- Replaces only first occurrences of given String with new one
- and returns new String object.
- */
- System.out.println(str.replaceFirst("Re", "Ra"));
- /*
- Replaces all occurrences of given String with new one and
- returns new String object.
- */
- System.out.println(str.replaceAll("Re", "Ra"));
- }
- }
- /*
- OUTPUT of the above given Java String Replace Example would be:
- Aeplace Aegion
- Raplace Region
- Raplace Ragion
- */

Post new comment