object Regex
- Alphabetic
- By Inheritance
- Regex
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final val NeedMoreInput: Int(-2)
- final val NotMatched: Int(-1)
- lazy val alphaNumerics: Regex
A regex that matches at least one letter or digit character.
- lazy val anyAlphaNumeric: Regex
A regex that matches a single letter or digit character.
- lazy val anyChar: Regex
A regex that matches any single character.
- lazy val anyDigit: Regex
A regex that matches any single digit character.
- lazy val anyLetter: Regex
A regex that matches any single letter character.
- lazy val anyWhitespace: Regex
A regex that matches any single whitespace character.
- def char(char: Char): Regex
A regex that matches the specified character.
- def charIn(chars: Char*): Regex
A regex that matches one of the specified characters.
- def charNotIn(chars: Char*): Regex
A regex that matches any character except of the specified ones
- lazy val digits: Regex
A regex that matches one or more digit characters.
- val empty: Regex
A regex that matches the empty string, which will always succeed.
- def filter(p: (Char) => Boolean): Regex
A regex that matches any single character for which the specified predicate returns true.
- lazy val letters: Regex
A regex that matches any one or more letter characters.
- def string(token: String): Regex
A regex that matches the specified literal string.
- lazy val whitespace: Regex
A regex that matches zero or more whitespace characters.