StringBuilder reverse() in Java with Examples

The reverse() method of StringBuilder is used to reverse the characters in the StringBuilder. The method helps to this character sequence to be replaced by the reverse of the sequence. Syntax:
public java.lang.AbstractStringBuilder reverse()
Returns: This method returns StringBuilder object after reversing the characters. Below programs illustrate the java.lang.StringBuilder.reverse() method: Example 1:Â
Java
// Java program to demonstrate// the reverse() Method.Â
class GFG {Â Â Â Â public static void main(String[] args)Â Â Â Â {Â
        // create a StringBuilder object        // with a String pass as parameter        StringBuilder str            = new StringBuilder("WelcomeGeeks");Â
        // print string        System.out.println("String = "                           + str.toString());Â
        // reverse the string        StringBuilder reverseStr = str.reverse();Â
        // print string        System.out.println("Reverse String = "                           + reverseStr.toString());    }} |
Output:
String = WelcomeGeeks Reverse String = skeeGemocleW
Example 2:Â
Java
// Java program to demonstrate// the reverse() Method.Â
class GFG {Â Â Â Â public static void main(String[] args)Â Â Â Â {Â
        // create a StringBuilder object        // with a String pass as parameter        StringBuilder str            = new StringBuilder("AAAABBBCCCC");Â
        // print string        System.out.println("String = "                           + str.toString());Â
        // reverse the string        StringBuilder reverseStr = str.reverse();Â
        // print string        System.out.println("Reverse String = "                           + reverseStr.toString());    }} |
Output:
String = AAAABBBCCCC Reverse String = CCCCBBBAAAA
References: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuilder.html#reverse()



