FSharp.Interop.Compose


Regex

Corresponding static methods as functions for System.Text.RegularExpressions.Regex

Nested types and modules

ModuleDescription
Full

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

Functions and values

Function or valueDescription
isMatch pattern input
Signature: pattern:(type) -> input:(type) -> bool

Calls IsMatch(input, pattern)

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

Calls Match(input, pattern)

Go to GitHub source
matches pattern input
Signature: pattern:(type) -> input:(type) -> (type)

Calls Matches(input, pattern)

Go to GitHub source
replace pattern evaluator input
Signature: pattern:(type) -> evaluator:((type) -> (type)) -> input:(type) -> string

Calls Replace(input, pattern, System.Text.RegularExpressions.MatchEvaluator(evaluator))

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

Calls Split(input, pattern)

Go to GitHub source
Fork me on GitHub