Match Properties
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | Captures | Gets a collection of all the captures matched by the capturing group, in innermost-leftmost-first order (or innermost-rightmost-first order if the regular expression is modified with the RegexOptions::RightToLeft option). The collection may have zero or more items.(Inherited from Group.) |
![]() ![]() | Empty | Gets the empty group. All failed matches return this empty match. |
![]() | Groups | Gets a collection of groups matched by the regular expression. |
![]() | Index | The position in the original string where the first character of the captured substring is found.(Inherited from Capture.) |
![]() | Length | Gets the length of the captured substring.(Inherited from Capture.) |
![]() | Name | Returns the name of the capturing group representing by the current instance.(Inherited from Group.) |
![]() | Success | Gets a value indicating whether the match is successful.(Inherited from Group.) |
![]() | Value | Gets the captured substring from the input string.(Inherited from Capture.) |

