Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found here. If the API is already migrated you can check here if exists in a module. More information regarding the migration can be found here

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.