📄 regularexpression.java
字号:
//: com:bruceeckel:simpletest:RegularExpression.java
// Regular expression for testing program output lines
package com.bruceeckel.simpletest;
import java.util.regex.*;
public class RegularExpression {
private String regExp;
private int numOfLines;
public RegularExpression(String s) {
this(s, 1);
}
public RegularExpression(String s, int i) {
regExp = s;
numOfLines = i;
}
public int getNumOfLines() {
return numOfLines;
}
public Matcher getMatcher(CharSequence input) {
Pattern p = Pattern.compile(regExp);
return p.matcher(input);
}
} ///:~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -