This is part of the Fake.Core.String module.
Function or value | Description |
( <* ) prefix text
Signature: prefix:string -> text:string -> bool
Modifiers: inline
|
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.
|