RegExpMatch class Null safety
A regular expression match.
Regular expression matches are Matches, but also include the ability to retrieve the names for any named capture groups and to retrieve matches for named capture groups by name instead of their index.
- Implemented types
- Annotations
- @Since("2.3")
Constructors
Properties
- end → int
-
The index in the string after the last character of the match.
read-only, inherited
- groupCount → int
-
Returns the number of captured groups in the match. [...]
read-only, inherited
-
groupNames
→ Iterable<
String> -
The names of the captured groups in the match.
read-only
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- input → String
-
The string on which this match was computed.
read-only, inherited
- pattern → Pattern
-
The pattern used to search in input.
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- start → int
-
The index in the string where the match starts.
read-only, inherited
Methods
-
group(
int group) → String? -
The string matched by the given
group
. [...]inherited -
groups(
List< int> groupIndices) → List<String?> -
A list of the groups with the given indices. [...]
inherited
-
namedGroup(
String name) → String? -
The string matched by the group named
name
. [...] -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited
-
operator [](
int group) → String? -
The string matched by the given
group
. [...]inherited