trait DslGreedyRegex extends DslRegex
A greedy operator regular expression. It matches as many characters as possible.
- Alphabetic
- By Inheritance
- DslGreedyRegex
- DslRegex
- Regex
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(that: DslRegex): DslRegex
Matches
thisregular expression followed bythatregular expressionMatches
thisregular expression followed bythatregular expression- Definition Classes
- DslRegex
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
lazy val
capture: DslRegex
Matches the same regular expression and captures the result
Matches the same regular expression and captures the result
- Definition Classes
- DslRegex
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
findAllIn(input: String): Iterator[String]
Finds all matches of this regular expression in the input.
Finds all matches of this regular expression in the input.
- Definition Classes
- Regex
-
def
findAllMatchIn(input: String): Iterator[Match]
Finds all matches of this regular expression in the input.
Finds all matches of this regular expression in the input.
- Definition Classes
- Regex
-
def
findFirstIn(input: String): Option[String]
Finds the first match of this regular expression in the input.
Finds the first match of this regular expression in the input. If nothing matches, returns
None- Definition Classes
- Regex
-
def
findFirstMatchIn(input: String): Option[Match]
Finds the first match of this regular expression in the input.
Finds the first match of this regular expression in the input. If nothing matches, returns
None- Definition Classes
- Regex
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isMatchedBy(input: String): Boolean
Tells whether this regular expression is matched by the given input
Tells whether this regular expression is matched by the given input
- Definition Classes
- Regex
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
lazy val
oneOrMore: DslGreedyRegex
Matches this regular expression one or more times
Matches this regular expression one or more times
- Definition Classes
- DslRegex
-
lazy val
optional: DslGreedyRegex
Matches this regular expression zero or one times
Matches this regular expression zero or one times
- Definition Classes
- DslRegex
-
val
re: ReNode
- Definition Classes
- DslRegex
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Regex → AnyRef → Any
-
def
unapplySeq(input: String): Option[List[String]]
- Definition Classes
- Regex
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
lazy val
zeroOrMore: DslGreedyRegex
Matches this regular expression zero or more times
Matches this regular expression zero or more times
- Definition Classes
- DslRegex
-
def
|(that: DslRegex): DslRegex
Matches
thisregular expression orthatregular expressionMatches
thisregular expression orthatregular expression- Definition Classes
- DslRegex
Gnieh Tekstlib
Gnieh Tekstlib is a library grouping standard classes and packages allowing people to work with texts and documents.
Package Structure
gnieh.diffdiff manipulation,gnieh.hyphenhyphenation for text in any language,gnieh.stringstrings manipulation for text processing,gnieh.mustachelightweight mustache template engine,gnieh.pppretty printing related classes,gnieh.regexregular expressions manipulation.