Active
Namespace: FSharpAux
Parent Module: Regex
Active patterns
Active pattern | Description |
( |FirstRegexGroup|_| ) pattern input
Signature: pattern:string -> input:string -> Group list option
|
CompiledName: |FirstRegexGroup|_|
|
( |RegexGroups|_| ) pattern input
Signature: pattern:string -> input:string -> GroupCollection list option
|
Returns the matching group of all occurences of the pattern
CompiledName: |RegexGroups|_|
|
( |RegexGroupValues|_| ) pattern input
Signature: pattern:string -> input:string -> string list list option
|
Returns the matching group values of all occurences of the pattern
CompiledName: |RegexGroupValues|_|
|
( |RegexMatchValue|_| ) regex input
Signature: regex:Regex -> input:string -> string option
|
Returns the first occurencing match of the pattern
CompiledName: |RegexMatchValue|_|
|
( |RegexValue|_| ) pattern input
Signature: pattern:string -> input:string -> string list option
|
Returns the matching values the first occurence of the pattern
CompiledName: |RegexValue|_|
|
( |RegexValues|_| ) pattern input
Signature: pattern:string -> input:string -> string list option
|
Returns the matching values of all occurences of the pattern
CompiledName: |RegexValues|_|
|