jasp.regexp
Class Match

java.lang.Object
  |
  +--jasp.regexp.Match

public class Match
extends java.lang.Object

Provides access to the read-only properties of a regular expression match.


Method Summary
 int getFirstIndex()
          Returns the position in a search string where a match occurs.
 int getLength()
          Returns the length of a match found in a search string.
 java.lang.String getValue()
          Returns the value or text of a match found in a search string.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getFirstIndex

public int getFirstIndex()
Returns the position in a search string where a match occurs.

getLength

public int getLength()
Returns the length of a match found in a search string.

getValue

public java.lang.String getValue()
Returns the value or text of a match found in a search string.