sealed trait Regex extends AnyRef

A model of a regular expression.

Self Type
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

Value Members

  1. def &(that: Regex): Regex

    Composes this regex with the specified regex using intersection, returning a regex that will match a prefix only if both this and the specified regex match it.

  2. def atLeast(min: Int): Regex

    Returns a new regex that matches at least min occurrences of this regex.

  3. def atMost(max: Int): Regex

    Returns a new regex that matches at most max occurrences of this regex.

  4. def between(min: Int, max: Int): Regex

    Returns a new regex that matches between min and max occurrences of this regex.

  5. def compile: Compiled

    Compiles the regex to a form that allows efficient execution on chunks of characters.

  6. def toLiteral: Option[Chunk[Char]]

    If the regex is a string literal, returns the string literal.

  7. def |(that: Regex): Regex

    Composes this regex with the specified regex using union, returning a regex that will match a prefix only if either this or the specified regex match it.

  8. def ~(that: Regex): Regex

    Sequentially composes this regex with the specified regex, returning a regex that will first match this one, and then match the specified regex.