Returns
a new string after replacing the old value (in the old
string) with the new value. Like all the other string keywords it
doesn't change the old string value.
Syntax:
StrReplace (String , Old Value, New Value)
Example:
s1 =
"The sun is bright"
s2 =
StrReplace (s," ","") 'remove white spaces
Result:
s2 = "Thesunisbright"
s1 is
unchanged.