object Regex
- Alphabetic
- By Inheritance
- Regex
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- 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
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- 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.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def filter(p: (Char) => Boolean): Regex
A regex that matches any single character for which the specified predicate returns true.
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- lazy val letters: Regex
A regex that matches any one or more letter characters.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def string(token: String): Regex
A regex that matches the specified literal string.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- lazy val whitespace: Regex
A regex that matches zero or more whitespace characters.