This is part of the Fake.Core.String module.

Operators

Functions and values

Function or valueDescription
( <* ) prefix text
Signature: prefix:string -> text:string -> bool

Checks whether the given text starts with the given prefix

( >** ) pattern text
Signature: pattern:string -> text:string -> bool

Determines if a text matches a given regex pattern.

( >=> ) pattern replacement text
Signature: pattern:string -> replacement:string -> text:string -> string

Find a regex pattern in a text and replaces it with the given replacement.