Java 程序能够按给定的字符串来倒转,并保留空格的位置。
使用 StringBuffer 类的 reverse() 方法,可以逆转给定字符串的内容,同时保留空格。
示例
public class Test { public static void main(String args[]) { String str = "hi welcome to Tutorialspoint"; String strArray[] = str.split(" "); StringBuffer sb= new StringBuffer(str); sb.reverse(); for(int i=0 ; i<str.length(); i++){ if(str.charAt(i)== ' '){ sb.insert(i, " "); } } sb.append(""); System.out.println(sb); }
输出
tn iopslai ro tuT ot emoclew ih
广告