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 anchoredAtBothRegion(): Boolean

    Permalink
  5. def anchoredAtEndRegion(): Boolean

    Permalink
  6. def anchoredAtStartRegion(): Boolean

    Permalink
  7. def appendReplacement(sb: StringBuffer, replacement: String): Matcher

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

    Permalink
  9. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  11. 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

  12. def end(group: Int): Int

    Permalink
  13. def end(): Int

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def find(start: Int): Boolean

    Permalink
  17. def find(): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  19. def group(group: Int): String

    Permalink
  20. def group(): String

    Permalink
  21. 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

  22. def groupCount(): Int

    Permalink
  23. def hasTransparentBounds(): Boolean

    Permalink
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  25. def inputLength(): Int

    Permalink
  26. final def isInstanceOf[T0]: Boolean

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

    Permalink
  28. def matches(): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  32. def pattern(): Pattern

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

    Permalink
  34. def regionEnd(): Int

    Permalink
  35. def regionSpansInput(): Boolean

    Permalink
  36. def regionStart(): Int

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

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

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

    Permalink
  40. def reset(): Matcher

    Permalink
  41. 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

  42. def start(group: Int): Int

    Permalink
  43. def start(): Int

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

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

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

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

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

    Permalink
  49. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped