JAvaはPattern,Matcherを用いて正規表現を呼び出す

7263 ワード

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 convenince( )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.