?? regex11.java
字號:
// strings/RegEx11.java
// TIJ4 Chapter Strings, Exercise 11, page 533
/* Apply the regular expression
* (?i)((^[aeiou])|(\\s+[aeiou]))\\w+[aeiou]\\b
* to
* Arline ate eight apples and one orange while Anita hadn't any
*/
// (alternate solution) Note double \\ required for \\s+, \\w+ and \\b in compile():
import java.util.regex.*;
public class RegEx11 {
public static void main(String[] args) {
Pattern p =
Pattern.compile("(?i)((^[aeiou])|(\\s+[aeiou]))\\w+[aeiou]\\b");
Matcher m = p.matcher("Arline ate eight apples and one orange while Anita hadn't any");
while(m.find())
System.out.println("Match \"" + m.group() + "\" at " + m.start());
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -