public static void main(String[] args){
Scanner scan = new Scanner(System.in);
String read = scan.readLine();
String str = read + ":" + "world";
String[] sets = str.split(":");
System.out.println(sets[0] + sets[1]);
}
在這裏,如果我們輸入hello
,我會得到hello world
。但是,當用戶輸入具有「:」的數據時,輸入的字符串也會被分割,並且不會打印「:」。不能拆分包含「:」的輸入數據可以做些什麼?用戶輸入數據的字符串分割問題
你**的指令模式拆分**。 –