我要像「我的狗」的字符串分割成數組的字符串:分裂沒有分隔符
| 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]);
}
編輯:
它只打印出「我的」
那麼,什麼happends? –
問題是什麼?它有用嗎?如果不是,它做錯了什麼? –
好吧,在我的電腦上,它會打印出「我的狗」。請重新測試它。你的輸入是否真的包含:-'我的狗'? –