object Regex

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

Type Members

  1. trait Compiled extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final val NeedMoreInput: Int(-2)
  5. final val NotMatched: Int(-1)
  6. lazy val alphaNumerics: Regex

    A regex that matches at least one letter or digit character.

  7. lazy val anyAlphaNumeric: Regex

    A regex that matches a single letter or digit character.

  8. lazy val anyChar: Regex

    A regex that matches any single character.

  9. lazy val anyDigit: Regex

    A regex that matches any single digit character.

  10. lazy val anyLetter: Regex

    A regex that matches any single letter character.

  11. lazy val anyWhitespace: Regex

    A regex that matches any single whitespace character.

  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def char(char: Char): Regex

    A regex that matches the specified character.

  14. def charIn(chars: Char*): Regex

    A regex that matches one of the specified characters.

  15. def charNotIn(chars: Char*): Regex

    A regex that matches any character except of the specified ones

  16. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  17. lazy val digits: Regex

    A regex that matches one or more digit characters.

  18. val empty: Regex

    A regex that matches the empty string, which will always succeed.

  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  21. def filter(p: (Char) => Boolean): Regex

    A regex that matches any single character for which the specified predicate returns true.

  22. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. lazy val letters: Regex

    A regex that matches any one or more letter characters.

  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def string(token: String): Regex

    A regex that matches the specified literal string.

  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. lazy val whitespace: Regex

    A regex that matches zero or more whitespace characters.

Inherited from AnyRef

Inherited from Any

Ungrouped