String str = "Hello"; StringBuffer sb = new StringBuffer(str); // Reverse the string using reverse() method sb.reverse(); System.out.println(sb);
String sentence = "The quick brown fox jumps over the lazy dog"; StringBuffer sb = new StringBuffer(sentence); // Reverse the sentence using reverse() method sb.reverse(); System.out.println(sb);Output: "god yzal eht revo spmuj xof nworb kciuq ehT" The StringBuffer class is part of the java.lang package library.