splitting8.java

来自「Thinking In Java 原文章」· Java 代码 · 共 18 行

JAVA
18
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?