sealed trait Regex extends AnyRef
- Alphabetic
- By Inheritance
- Regex
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- 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.
- def atLeast(min: Int): Regex
Returns a new regex that matches at least
min
occurrences of this regex. - def atMost(max: Int): Regex
Returns a new regex that matches at most
max
occurrences of this regex. - def between(min: Int, max: Int): Regex
Returns a new regex that matches between
min
andmax
occurrences of this regex. - def compile: Compiled
Compiles the regex to a form that allows efficient execution on chunks of characters.
- def toLiteral: Option[Chunk[Char]]
If the regex is a string literal, returns the string literal.
- 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.
- 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.