Capture Class
NuGet: GHIElectronics.TinyCLR.RegularExpressions
Assembly: GHIElectronics.TinyCLR.RegularExpressions
Namespace: System.Text.RegularExpressions
Represents the results from a single subexpression capture. System.Text.RegularExpressions. Capture respresents one substring to a single successful catpture
public class Capture
Properties
Length
public int Length { get; }
The length of the captured substring.
Value
public string Value { get; }
The captured substring from the input string.
Methods
ToString()
public override string ToString()
Returns the captured substring.
Returns string