package org.kodejava.lang;
public class StringReplace {
public static void main(String[] args) {
String text = "The quick brown fox jumps over the lazy dog";
System.out.println("Before: " + text);
// The replace method replace all occurrences of character
// 'o' with 'u' and returns a new string object.
text = text.replace('o', 'u');
System.out.println("After : " + text);
}
}
The result of the code snippet:
Before: The quick brown fox jumps over the lazy dog
After : The quick bruwn fux jumps uver the lazy dug
Latest posts by Wayan (see all)
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023