字符串反转-Java实例
如何逆转/反转一个字符串?
解决方法
下面的示例显示了如何通过命令行参数反转字符串。该程序使用StringBuffer(String string)方法输入字符串并反转缓冲区,然后将缓冲区使用toString() 转换成String。
public class StringReverseExample{ public static void main(String[] args){ String string="abcdef"; String reverse = new StringBuffer(string). reverse().toString(); System.out.println(" String before reverse: "+string); System.out.println("String after reverse: "+reverse); } }
结果
上面的代码示例将产生以下结果。
String before reverse:abcdef String after reverse:fedcba