我想将像“我的狗”这样的字符串拆分成一个数组:
| M | y | space char will be in here | D | o | g |
这是我的代码:
String []in_array;
input = sc.next();
in_array = input.split(""); //Note this there is no delimiter
for(int k=1; k < in_array.length; k++){
System.out.print(" "+in_array[k]);
}
编辑:
它只打印出“我的”