final class AndStartWithWord extends AnyRef
This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
the matchers DSL.
- Source
- Matcher.scala
- Alphabetic
- By Inheritance
- AndStartWithWord
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new AndStartWithWord()
Value Members
-
def
regex(regex: Regex): Matcher[T with String]
This method enables the following syntax:
This method enables the following syntax:
aMatcher and startWith regex (decimalRegex) ^
-
def
regex(regexWithGroups: RegexWithGroups): Matcher[T with String]
This method enables the following syntax:
This method enables the following syntax:
aMatcher and startWith regex ("a(b*)c" withGroup "bb") ^
-
def
regex(regexString: String): Matcher[T with String]
This method enables the following syntax:
This method enables the following syntax:
aMatcher and startWith regex (decimal) ^