For given string return a new string *with the reversed order of characters code example

Example 1: java string reverse

String rev = new StringBuilder("Your String").reverse().toString();

Example 2: Reverse a string in java

// reverse a string using reverse() method of StringBuilder class
class ReverseUsingReverseMethod
{
   public static void main(String[] args)
   {
      String str = "Hello world Java";
      StringBuilder sb = new StringBuilder();
      // append string to StringBuilder
      sb.append(str);
      sb = sb.reverse();
      // printing reversed String
      System.out.println(sb);
   }
}

Tags:

Java Example