FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

String.Operators Module

FAKE string module operators

Functions and values

Function or value Description

prefix <* text

Full Usage: prefix <* text

Parameters:
    prefix : string
    text : string

Returns: bool
Modifiers: inline

Checks whether the given text starts with the given prefix

prefix : string
text : string
Returns: bool

pattern >** text

Full Usage: pattern >** text

Parameters:
    pattern : string
    text : string

Returns: bool

Determines if a text matches a given regex pattern.

pattern : string
text : string
Returns: bool

(>=>) pattern replacement text

Full Usage: (>=>) pattern replacement text

Parameters:
    pattern : string
    replacement : string
    text : string

Returns: string

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

pattern : string
replacement : string
text : string
Returns: string