Prev Page Next Page
StrReplace
Previous Top Next

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.
Prev Page Next Page
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)