SearchAndReplace
function SearchAndReplace(
oProperties: object,
oProperties.searchString: string,
oProperties.replaceString: string,
oProperties.matchCase: boolean = true,
): void
Description
Finds and replaces the text.
Parameters
- oProperties
object
An object which contains the search and replacement strings.
- oProperties.searchString
string
The search string.
- oProperties.replaceString
string
The replacement string.
- oProperties.matchCase
boolean
true Case sensitive or not.
Returns
void