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 number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024