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 val NeedMoreInput: Int(-2)
  2. final val NotMatched: Int(-1)
  3. lazy val alphaNumerics: Regex

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

  4. lazy val anyAlphaNumeric: Regex

    A regex that matches a single letter or digit character.

  5. lazy val anyChar: Regex

    A regex that matches any single character.

  6. lazy val anyDigit: Regex

    A regex that matches any single digit character.

  7. lazy val anyLetter: Regex

    A regex that matches any single letter character.

  8. lazy val anyWhitespace: Regex

    A regex that matches any single whitespace character.

  9. def char(char: Char): Regex

    A regex that matches the specified character.

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

    A regex that matches one of the specified characters.

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

    A regex that matches any character except of the specified ones

  12. lazy val digits: Regex

    A regex that matches one or more digit characters.

  13. val empty: Regex

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

  14. def filter(p: (Char) => Boolean): Regex

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

  15. lazy val letters: Regex

    A regex that matches any one or more letter characters.

  16. def string(token: String): Regex

    A regex that matches the specified literal string.

  17. lazy val whitespace: Regex

    A regex that matches zero or more whitespace characters.