FsGroup
Namespace: FsVerbalExpressions
Composable wrapping type for System.Text.RegularExpressions.Group.
Instance members
Instance member | Description |
Captures()
Signature: unit -> Capture []
|
Returns array of 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).
|
Group
Signature: Group
|
The underlying System.Text.RegularExpressions.Group.
CompiledName: get_Group
|
Index
Signature: int
|
The position in the original string where the first character of the captured substring is found.
CompiledName: get_Index
|
Length
Signature: int
|
Returns the length of the captured substring.
CompiledName: get_Length
|
Name
Signature: string
|
Returns name of capture group.
CompiledName: get_Name
|
Success
Signature: bool
|
Returns a value indicating whether the match is successful.
CompiledName: get_Success
|
Value
Signature: string
|
Returns the captured substring from the input string.
CompiledName: get_Value
|