Class/Object

scala.scalanative.regex

Matcher

Related Docs: object Matcher | package regex

Permalink

final class Matcher extends AnyRef

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Matcher
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Matcher(pattern: Pattern, input: CharSequence)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def appendReplacement(sb: StringBuffer, replacement: String): Matcher

    Permalink
  5. def appendTail(sb: StringBuffer): StringBuffer

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def end(_group: String): Int

    Permalink

    Returns the end of the named group of the most recent match, or -1 if the group was not matched.

    Returns the end of the named group of the most recent match, or -1 if the group was not matched.

    Exceptions thrown

    java.lang.IllegalStateException if no group with that name exists

  9. def end(group: Int): Int

    Permalink
  10. def end(): Int

    Permalink
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def find(start: Int): Boolean

    Permalink
  15. def find(): Boolean

    Permalink
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def group(group: Int): String

    Permalink
  18. def group(): String

    Permalink
  19. def group(_group: String): String

    Permalink

    Returns the named group of the most recent match, or null if the group was not matched.

    Returns the named group of the most recent match, or null if the group was not matched.

    Exceptions thrown

    java.lang.IllegalStateException if no group with that name exists

  20. def groupCount(): Int

    Permalink
  21. def hasTransparentBounds(): Boolean

    Permalink
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. def inputLength(): Int

    Permalink
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def lookingAt(): Boolean

    Permalink
  26. def matches(): Boolean

    Permalink
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. def pattern(): Pattern

    Permalink
  31. def region(start: Int, end: Int): Matcher

    Permalink
  32. def regionEnd(): Int

    Permalink
  33. def regionStart(): Int

    Permalink
  34. def replaceAll(replacement: String): String

    Permalink
  35. def replaceFirst(replacement: String): String

    Permalink
  36. def reset(input: CharSequence): Matcher

    Permalink
  37. def reset(): Matcher

    Permalink
  38. def start(_group: String): Int

    Permalink

    Returns the start of the named group of the most recent match, or -1 if the group was not matched.

    Returns the start of the named group of the most recent match, or -1 if the group was not matched.

    Exceptions thrown

    java.lang.IllegalStateException if no group with that name exists

  39. def start(group: Int): Int

    Permalink
  40. def start(): Int

    Permalink
  41. def substring(start: Int, end: Int): String

    Permalink
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  43. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  44. def usePattern(newPattern: Pattern): Matcher

    Permalink
  45. def useTransparentBounds(b: Boolean): Matcher

    Permalink
  46. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped