FSharp.Interop.Compose


Full

Longer parameter versions of System.Text.RegularExpressions.Regex methods

Functions and values

Function or valueDescription
isMatch (...)
Signature: pattern:string -> options:(type) -> matchTimeout:(type) -> input:string -> bool

Calls IsMatch(input, pattern, options, matchTimeout)

Go to GitHub source
match pattern options matchTimeout input
Signature: pattern:string -> options:(type) -> matchTimeout:(type) -> input:string -> (type)

Calls Match(input, pattern, options, matchTimeout)

Go to GitHub source
matches (...)
Signature: pattern:string -> options:(type) -> matchTimeout:(type) -> input:string -> (type)

Calls Matches(input, pattern, options, matchTimeout)

Go to GitHub source
replace (...)
Signature: pattern:(type) -> replacement:(type) -> options:(type) -> matchTimeout:(type) -> input:(type) -> string

Calls Replace(input, pattern, replacement, options, matchTimeout)

Go to GitHub source
split pattern options matchTimeout input
Signature: pattern:string -> options:(type) -> matchTimeout:(type) -> input:string -> string []

Calls Split(input, pattern, options, matchTimeout)

Go to GitHub source
Fork me on GitHub