0
我有分割字符串,每次
String input = "one two three four five six seven";
是否有與String.split()
工程搶(高達)在同一時間兩個詞,使得正則表達式兩個字:
String[] pairs = input.split("some regex");
System.out.println(Arrays.toString(pairs));
結果在此:
[one two,two three, three four,four five,five six,six seven]
但JB Nizet的答案肯定會解決你的問題 – jgon