复习一下正则表达式
1. 以下是正则常用的知识点,方便以后查阅。
2. java正则方法和类
java中正则表达式相关方法和类主要在java.util.regex 包中,主要包括以下三个类:
Pattern 类:
pattern 对象是一个正则表达式的编译表示。Pattern 类没有公共构造方法。要创建一个 Pattern 对象,你必须首先调用其公共静态编译方法,它返回一个 Pattern 对象。该方法接受一个正则表达式作为它的第一个参数。Matcher 类:
Matcher 对象是对输入字符串进行解释和匹配操作的引擎。与Pattern 类一样,Matcher 也没有公共构造方法。你需要调用 Pattern 对象的 matcher 方法来获得一个 Matcher 对象。PatternSyntaxException:
PatternSyntaxException 是一个非强制异常类,它表示一个正则表达式模式中的语法错误。
下面这个示例用来查找字符串中是否包含java子串:
public class Regex {
public static void main(String[] args) {
String content = "java of regex";
String partten = ".*java.*";
boolean isMatches = Pattern.matches(partten, content);
System.out.println("isMatches=" + isMatches);
}
}
3. 捕获组
捕获组是把多个字符当一个单独单元进行处理的方法,它通过对括号内的字符分组来创建。例如,正则表达式 (dog) 创建了单一分组,组里包含"d","o",和"g"。
捕获组是通过从左至右计算其开括号来编号。例如,
在表达式((A)(B(C))),有四个这样的组:
- ((A)(B(C)))
- (A)
- (B(C))
- (C)
可以通过调用 matcher 对象的 groupCount 方法来查看表达式有多少个分组。groupCount 方法返回一个 int 值,表示matcher对象当前有多个捕获组。
还有一个特殊的组(group(0)),它总是代表整个表达式。该组不包括在 groupCount 的返回值中。
4. \ 的作用
在 Java 中正则表达式中则需要有两个反斜杠才能被解析为转义作用。可以简单的理解在 Java 的正则表达式中,两个 \ 代表一个 \,这也就是为什么表示一位数字的正则表达式是 \d,而表示一个普通的反斜杠是 \\。
5. Matcher 类的方法
5.1 索引方法
索引方法提供了有用的索引值,精确表明输入字符串中在哪能找到匹配
参数名 | 方法及说明 |
---|---|
1 | public int start() ;返回以前匹配的初始索引。 |
2 | public int start(int group); 返回在以前的匹配操作期间,由给定组所捕获的子序列的初始索引 |
3 | public int end();返回最后匹配字符之后的偏移量。 |
4 | public int end(int group);返回在以前的匹配操作期间,由给定组所捕获子序列的最后字符之后的偏移量。 |
5.2 查找方法
查找方法用来检查输入字符串并返回一个布尔值,表示是否找到该模式;
matches 和 lookingAt 方法都用来尝试匹配一个输入序列模式。它们的不同是 matches 要求整个序列都匹配,而lookingAt 不要求。
lookingAt 方法虽然不需要整句都匹配,但是需要从第一个字符开始匹配。
这两个方法经常在输入字符串的开始使用。
参数名 | 方法及说明 |
---|---|
1 | public boolean lookingAt() ; 尝试将从区域开头开始的输入序列与该模式匹配。 |
2 | public boolean find() 尝试查找与该模式匹配的输入序列的下一个子序列。 |
3 | public boolean find(int start) 重置此匹配器,然后尝试查找匹配该模式、从指定索引开始的输入序列的下一个子序列。 |
4 | public boolean matches() 尝试将整个区域与模式匹配。 |
5.3 替换方法
replaceFirst 和 replaceAll 方法用来替换匹配正则表达式的文本。不同的是,replaceFirst 替换首次匹配,replaceAll 替换所有匹配。
参数名 | 方法及说明 |
---|---|
1 | public Matcher appendReplacement(StringBuffer sb, String replacement) 实现非终端添加和替换步骤。 |
2 | public StringBuffer appendTail(StringBuffer sb) 实现终端添加和替换步骤。 |
3 | public String replaceAll(String replacement) 替换模式与给定替换字符串相匹配的输入序列的每个子序列。 |
4 | public String replaceFirst(String replacement) 替换模式与给定替换字符串匹配的输入序列的第一个子序列。 |
5 | public static String quoteReplacement(String s) 返回指定字符串的字面替换字符串。这个方法返回一个字符串,就像传递给Matcher类的appendReplacement 方法一个字面字符串一样工作。 |
示例一:对单词“java”出现的次数进行计数
/**
* 对单词“java”出现的次数进行计数
*/
public static void main(String[] args) {
final String input = "android java c++ c java javascript";
//使用/b确保java是一个完整的单词而不是一个较长字符串的子串。
String regex = "\\bjava\\b";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(input);
int count = 0;
while (matcher.find()) {
count++;
int start = matcher.start();
int end = matcher.end();
System.out.println("conunt=" + count + ",start=" + start + ",end=" + end);
}
}
输入结果
conunt=1,start=8,end=12
conunt=2,start=19,end=23
Process finished with exit code 0
示例二:matches 和 lookingAt 使用方法
/**
* matches 和 lookingAt 方法
*/
public static void main(String[] args) {
final String REGEX = "foo";
final String INPUT = "fooooooooooooooooo";
final String INPUT2 = "ooooofoooooooooooo";
Pattern pattern;
Matcher matcher;
Matcher matcher2;
pattern = Pattern.compile(REGEX);
matcher = pattern.matcher(INPUT);
matcher2 = pattern.matcher(INPUT2);
System.out.println("lookingAt(): " + matcher.lookingAt());
System.out.println("matches(): " + matcher.matches());
System.out.println("lookingAt2(): " + matcher2.lookingAt());
System.out.println("matches2(): " + matcher2.matches());
}
打印结果
lookingAt(): true
matches(): false
lookingAt2(): false
matches2(): false
示例三:replaceFirst 和 replaceAll 方法
/**
*replaceFirst 和 replaceAll 方法
*/
public static void main(String[] args) {
String regex = "dog";
String input = "The dog says meow. " +
"All dogs say meow.";
String repalce = "cat";
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
input = m.replaceAll(repalce);
System.out.println(input);
}
示例四:appendReplacement 和 appendTail 方法
Matcher 类也提供了appendReplacement 和 appendTail 方法用于文本替换:
/**
* appendReplacement 和 appendTail 方法
*/
public static void main(String[] args) {
String REGEX = "a*b";
String INPUT = "aabfooaabfooabfoobkkk";
String REPLACE = "-";
Pattern p = Pattern.compile(REGEX);
// 获取 matcher 对象
Matcher m = p.matcher(INPUT);
StringBuffer sb = new StringBuffer();
while (m.find()) {
m.appendReplacement(sb, REPLACE);
}
m.appendTail(sb);
System.out.println(sb.toString());
}
参考:
- https://www.jianshu.com/p/323c6f3afa62
- https://www.runoob.com/java/java-regular-expressions.html