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");
//from ww w . j a v a 2 s.c o m
sb.reverse();
System.out.println(sb.toString());
}
}
The output: