Skip to content

Latest commit

 

History

History
92 lines (79 loc) · 2.84 KB

File metadata and controls

92 lines (79 loc) · 2.84 KB

Function: ReplaceNoCase

Replaces occurrences of substring1 in a string with obj, in a specified scope.

The search is case-sensitive. Function returns original string with replacements made

Method Signature

ReplaceNoCase(string=[string], substring1=[string], obj=[any], scope=[string], start=[string])

Arguments

Argument Type Required Description Default
string string true The string to search
substring1 string true The substring to search for
obj any true The string to replace substring1 with
scope string true The scope to search in one
start string false 1

Examples

Related