[]
Represents the details about a found text.
public class ReplacingArgs
Gets the zero-based end position of the match from the start of the last Text object that contains the ending of the match. If match doesnt ends with Text object, it will be -1.
public int EndIndex { get; }
Gets the matched text.
public string FoundText { get; }
Gets the match range.
public Range MatchRange { get; }
Gets the match details.
public MatchDetails RegexDetails { get; }
Gets or sets the replacement string.
public string Replacement { get; set; }
Gets a zero-based starting position of the match from the start of the first Text object that contains the beginning of the match. If match doesnt start from Text object, it will be -1.
public int StartIndex { get; }