1 write to _regex
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Match.cs (1)
54
_regex
= regex;
6 references to _regex
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\GroupCollection.cs (4)
40
public Group this[string groupname] => _match.
_regex
is null ?
42
GetGroup(_match.
_regex
.GroupNumberFromName(groupname));
82
string groupname = _match.
_regex
!.GroupNameFromNumber(i + 1);
210
public bool ContainsKey(string key) => _match.
_regex
!.GroupNumberFromName(key) >= 0;
System\Text\RegularExpressions\Match.cs (2)
100
Regex? r =
_regex
;
119
Regex? regex =
_regex
?? throw new NotSupportedException(SR.NoResultOnFailed);