?? splitting8.java
字號:
// strings/Splitting8.java
// TIJ4 Chapter Strings, Exercise 8, page 527
// Split the string Splitting.knights on the words "the" or "you."
import java.util.*;
public class Splitting8 {
public static String knights =
"Then, when you have found the shrubbery, you must " +
"cut down the mightiest tree in the forest... " +
"with... a herring!";
public static void split(String regex) {
System.out.println(Arrays.toString(knights.split(regex)));
}
public static void main(String[] args) {
split("the|you");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -