Replaces the specified substring with a new string.
ReplacedStr := StrReplace(Haystack, Needle , ReplaceText, CaseSense, &OutputVarCount, Limit)
Type: String
The string whose content is searched and replaced.
Type: String
The string to search for.
Type: String
Needle will be replaced with this text. If omitted or blank, Needle will be replaced with blank (empty). In other words, it will be omitted from the return value.
One of the following values (defaults to 0 if omitted):
"On"
or 1
(True
): The search is case sensitive.
"Off"
or 0
(False
): The letters A-Z are considered identical to their lowercase counterparts.
"Locale"
: The search is case insensitive according to the rules of the current user's locale. For example, most English and Western European locales treat not only the letters A-Z as identical to their lowercase counterparts, but also non-ASCII letters like Ä and Ü as identical to theirs. Locale is 1 to 8 times slower than Off depending on the nature of the strings being compared.
Type: VarRef
A reference to a output variable in which to store the number of replacements that occurred (0 if none).
Type: Integer
If Limit is omitted, it defaults to -1, which replaces all occurrences of the pattern found in Haystack. Otherwise, specify the maximum number of replacements to allow. The part of Haystack to the right of the last replacement is left unchanged.
Type: String
This function returns the replaced version of the specified string.
The built-in variables A_Space and A_Tab contain a single space and a single tab character, respectively. They are useful when searching for spaces and tabs alone or at the beginning or end of Needle.
RegExReplace, InStr, SubStr, StrLen, StrLower, StrUpper