replacing9.java
来自「thinking in java 经典书的习题答案 希望对大家有帮助啊」· Java 代码 · 共 15 行
JAVA
15 行
// strings/Replacing9.java
// TIJ4 Chapter Strings, Exercise 9, page 527
// Using the documentation for java.util.regex.Pattern as a resource,
// replace all the vowels in Splitting.knights with underscores.
import java.util.*;
public class Replacing9 {
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 main(String[] args) {
System.out.println(knights.replaceAll("[aeiouAEIOU]", "_"));
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?