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 create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023