Replace

查找给定的子字符串,并用另一个子字符串替换掉找到的子字符串。

语法:

Replace(OldValue, NewValue)

参数:

OldValue: 要查找的子字符串
NewValue: 用于替换的子字符串

例如:

Dim s As String ="abc123efg"
s = s.Replace(
"123","789")
Output.Show(s)

执行后,你可以看到变量s的值为:abc789efg


本页地址:http://www.foxtable.com/webhelp/topics/0241.htm