在VB中,Replace函数用于替换字符串中指定的字符或字符串,并返回一个新的字符串。
Replace函数的用法如下: Replace(要替换的字符串, 要替换的字符或字符串, 替换后的字符或字符串[, 指定替换次数, 指定比较方式])
参数说明:
示例:
Dim originalStr As String = "Hello World!"
Dim newStr As String = Replace(originalStr, "o", "e")
' 结果: "Helle Werld!"
以上示例中,使用Replace函数将字符串"Hello World!“中的字符"o"替换为"e”,返回替换后的新字符串"Helle Werld!"。