RegExpIns class
- Implemented types
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- isCaseSensitive → bool
-
Whether this regular expression is case sensitive.
no setteroverride
- isDotAll → bool
-
Whether "." in this regular expression matches line terminators.
no setteroverride
- isMultiLine → bool
-
Whether this regular expression matches multiple lines.
no setteroverride
- isUnicode → bool
-
Whether this regular expression uses Unicode mode.
no setteroverride
- pattern → String
-
The regular expression pattern source of this
RegExp
.no setteroverride - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
allMatches(
String input, [int start = 0]) → Iterable< RegExpMatch> -
Matches this pattern against the string repeatedly.
override
-
firstMatch(
String input) → RegExpMatch? -
Finds the first match of the regular expression in the string
input
.override -
get(
Token name) → Object? -
override
-
hasMatch(
String input) → bool -
Checks whether this regular expression has a match in the
input
.override -
matchAsPrefix(
String string, [int start = 0]) → Match? -
Matches this pattern against the start of
string
.override -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
stringMatch(
String input) → String? -
Finds the string of the first match of this regular expression
in
input
.override -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited