Reverse a string in Java

前端 未结 30 2593
礼貌的吻别
礼貌的吻别 2020-11-21 13:12

I have \"Hello World\" kept in a String variable named hi.

I need to print it, but reversed.

How can I do this? I understand there

30条回答
  •  被撕碎了的回忆
    2020-11-21 14:10

    You can also try this:

    public class StringReverse {
        public static void main(String[] args) {
            String str = "Dogs hates cats";
            StringBuffer sb = new StringBuffer(str);
            System.out.println(sb.reverse());
        }
    }
    

提交回复
热议问题