scala.util.matching.Regex

Match

class Match extends MatchData

A case class for a succesful match.

Inherits

  1. MatchData
  2. AnyRef
  3. Any

Value Members

  1. def after(i: Int): CharSequence

    The char sequence after last character of match in group i, or null if nothing was matched for that group

    The char sequence after last character of match in group i, or null if nothing was matched for that group

    definition classes: MatchData
  2. def after: CharSequence

    Returns char sequence after last character of match, or null if nothing was matched

    Returns char sequence after last character of match, or null if nothing was matched

    definition classes: MatchData
  3. def before(i: Int): CharSequence

    The char sequence before first character of match in group i, or null if nothing was matched for that group

    The char sequence before first character of match in group i, or null if nothing was matched for that group

    definition classes: MatchData
  4. def before: CharSequence

    The char sequence before first character of match, or null if nothing was matched

    The char sequence before first character of match, or null if nothing was matched

    definition classes: MatchData
  5. def end(i: Int): Int

    The index following the last matched character in group i

    The index following the last matched character in group i

  6. val end: Int

    The index following the last matched character

    The index following the last matched character

  7. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an equivalence relation:

    • It is reflexive: for any instance x of type Any, x.equals(x) should return true.
    • It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.
    • It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same Int (o1.hashCode.equals(o2.hashCode)).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: AnyRef ⇐ Any
  8. def force: Match

    The match itself with matcher-dependent lazy vals forced, so that match is valid even once matcher is advanced

    The match itself with matcher-dependent lazy vals forced, so that match is valid even once matcher is advanced

  9. def group(id: String): String

    Returns the group with given name

    Returns the group with given name

    id

    The group name

    returns

    The requested group

    definition classes: MatchData
  10. def group(i: Int): String

    The matched string in group i, or null if nothing was matched

    The matched string in group i, or null if nothing was matched

    definition classes: MatchData
  11. def groupCount: Int

    The number of subgroups

    The number of subgroups

  12. val groupNames: Seq[String]

    The names of the groups, or some empty sequence if one defined

    The names of the groups, or some empty sequence if one defined

  13. def hashCode(): Int

    Returns a hash code value for the object

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    definition classes: AnyRef ⇐ Any
  14. def matched: String

    The matched string, of null if nothing was matched

    The matched string, of null if nothing was matched

    definition classes: MatchData
  15. val source: CharSequence

    The source from where the match originated

    The source from where the match originated

  16. def start(i: Int): Int

    The index of the first matched character in group i

    The index of the first matched character in group i

  17. val start: Int

    The index of the first matched character

    The index of the first matched character

  18. def subgroups: List[String]

    All matched subgroups, i

    All matched subgroups, i.e. not including group(0)

    definition classes: MatchData
  19. def toString(): String

    The matched string; equivalent to matched

    The matched string; equivalent to matched.toString @return a string representation of the object.

    */

    definition classes: MatchData ⇐ AnyRef ⇐ Any

Instance constructors

  1. new Match(source: CharSequence, matcher: Matcher, groupNames: Seq[String])

  2. new Match()