Skip to content

Latest commit

 

History

History
90 lines (77 loc) · 2.77 KB

File metadata and controls

90 lines (77 loc) · 2.77 KB

Function: ReReplace

Uses a regular expression (regex) to search a string for a string pattern and replace it with another.

The search is case-sensitive.

Method Signature

ReReplace(string=[string], regex=[string], substring=[string], scope=[string])

Arguments

Argument Type Required Description Default
string string true The string to search
regex string true The regular expression to search for
substring string true The string to replace regex with
scope string true The scope to search in (one, all) one

Examples

Related