Workshop.codes
Create

String Replace Last updated November 26, 2024

Description

Results in a String Value. This String Value will be built from the specified String Value, where all occurences of the pattern String are replaced with the replacement String.

Snippet

String Replace(Global.variableName, Global.variableName, Global.variableName);

Properties

Returns: String
Parameters: String, Pattern, Replacement

String
Type: String, Default: Global Variable
The String Value with which to search for replacements.

Pattern
Type: String, Default: Global Variable
The String pattern to be replaced.

Replacement
Type: String, Default: Global Variable
The String Value with which to replace the pattern String

Workshop.codes