java使用Pattern、Matcher调用正则表达式
-
public final class Pattern
- extends Object
- implements Serializable
A compiled(编译) representation of a regular expression.
A regular expression, specified as a string, must first be compiled into an instance of this class. The resulting pattern can then be used to create aMatcher
object
that can match(匹配) arbitrary(任意的) character sequences
against(依照) the regular expression. All of the state involved in performing(执行) a match resides(驻留) in the matcher(匹配器), so many matchers
can share the same pattern.
A typical invocation sequence is thus
Pattern p = Pattern.compile
("a*b");
Matcher m = p.matcher
("aaaaab");
boolean b = m.matches
();
A matches
method is defined by this class as a convenience(便利) for when a regular expression is used just once. This method compiles an expression and matches an input sequence against it in a single
invocation. The statement
boolean b = Pattern.matches("a*b", "aaaaab");
is equivalent(等同于) to the three statements above(以上), though(不过) for repeated matches it is less efficient(效率) since it does not allow the compiled pattern to be reused.
Instances of this class are immutable and are safe for use by multiple concurrent threads. Instances of the Matcher
class are not safe for such use.
-
public final class Matcher
- extends Object
- implements MatchResult
An engine that performs match operations on a
character sequence
by interpreting(解释) a
Pattern
.
A matcher is created from a pattern by invoking the pattern'smatcher
method. Once created, a matcher can be used to perform three different kinds of match operations:
-
The
matches
method attempts(尝试) to match the entire(整个) input sequence against the pattern. -
The
lookingAt
method attempts to match the input sequence, starting at the beginning, against the pattern. -
The
find
method scans(扫描) the input sequence looking for the next subsequence that matches the pattern.
Each of these methods returns a boolean indicating(表示) success or failure(失败). More information about a successful match can be obtained(获得) by querying(查询) the state of the matcher.
A matcher finds matches in a subset of its input called the region. By default, the region(范围) contains all of the matcher's input. The region can be modified via(通过) theregion
method and
queried via theregionStart
and regionEnd
methods. The way that the region boundaries interact with some pattern constructs can be changed. SeeuseAnchoringBounds
anduseTransparentBounds
for more details(详情).
This class also defines methods for replacing matched subsequences with new strings whose contents can, if desired, be computed(计算) from the match result. TheappendReplacement
andappendTail
methods can be used in tandem(串联) in order to collect (收集)the result into an existing string buffer, or the more convenient replaceAll
method can be used to create a string in which every matching subsequence in the input sequence
is replaced.
The explicit state of a matcher includes the start and end indices(索引) of the most recent(最近) successful match. It also includes the start and end indices of the input subsequence captured(捕获) by each capturing group in the pattern as well as(以及) a total(总数) count of such subsequences. As a convenience, methods are also provided for returning these captured subsequences in string form.
The explicit state of a matcher is initially(初始) undefined; attempting(尝试) to query(查询) any part of it before a successful match will cause anIllegalStateException
to be
thrown. The explicit state of a matcher is recomputed(重新计算) by every match operation.
The implicit(隐式) state of a matcher includes the input character sequence as well as the append position, which is initially zero and is updated by theappendReplacement
method.
A matcher may be reset explicitly(明确) by invoking itsreset()
method or, if a new input sequence is desired, itsreset(CharSequence)
method. Resetting a matcher discards(丢弃)
its explicit state information and sets the append position to zero.
Instances of this class are not safe for use by multiple concurrent threads.