The replace method replaces the specified substring of this string with the specified string.

    
    String sentence = "The quick brown fox jumps over the lazy dog.";

    String sentenceReplace = sentence.replace("dog", "cat");

    System.out.println(sentenceReplace);
    // "The quick brown fox jumps over the lazy cat."