Java 字符串反转
使用反转函数 reverse() 将字符串反转
public class StringReverseExample{ public static void main(String[] args){ String string="twle"; String reverse = new StringBuffer(string).reverse().toString(); System.out.println("字符串反转前:"+string); System.out.println("字符串反转后:"+reverse); } }
编译运行以上 Java 代码,输出结果如下
字符串反转前:twle 字符串反转后:elwt