2 writes to _text
System (2)
regex\system\text\regularexpressions\RegexCapture.cs (1)
28
_text
= text;
regex\system\text\regularexpressions\RegexMatch.cs (1)
103
_text
= text;
10 references to _text
System (10)
regex\system\text\regularexpressions\RegexCapture.cs (5)
65
return
_text
.Substring(_index, _length);
86
return
_text
;
93
return
_text
.Substring(0, _index);
100
return
_text
.Substring(_index + _length,
_text
.Length - _index - _length);
regex\system\text\regularexpressions\RegexCaptureCollection.cs (1)
150
_captures[j] = new Capture(_group.
_text
, _group._caps[j * 2], _group._caps[j * 2 + 1]);
regex\system\text\regularexpressions\RegexGroupCollection.cs (1)
151
_groups[i] = new Group(_match.
_text
, _match._matches[i + 1], _match._matchcount[i + 1], groupname);
regex\system\text\regularexpressions\RegexMatch.cs (3)
93
System.Diagnostics.Debug.Assert(!(_textbeg < 0 || _textstart < _textbeg || _textend < _textstart ||
_text
.Length < _textend),
139
return _regex.Run(false, _length,
_text
, _textbeg, _textend - _textbeg, _textpos);
182
return
_text
.Substring(matches[(c - 1) * 2], matches[(c * 2) - 1]);