Java Data Type Tutorial - Java StringBuilder.reverse()








Syntax

StringBuilder.reverse() has the following syntax.

public StringBuilder reverse()

Example

In the following code shows how to use StringBuilder.reverse() method.

public class Main {
  public static void main(String[] argv) {
    StringBuilder sb = new StringBuilder();
    sb.append("java2s.com");
    
    sb.reverse();
    System.out.println(sb.toString());
  }
}

The output: