如何:移除字符串的某些部分 (Visual Basic)

更新:2007 年 11 月

下面的代码示例将一个字符串的所有匹配项从另一字符串移除。

示例

此示例使用 Replace 函数来用空字符串替换子字符串的每个匹配项。结果为一个移除了子字符串的新字符串。

此示例将 Replace 函数的返回值赋给字符串变量 withoutParts。存储在 withParts 中的原始字符串不变。

Dim withParts As String = "Books and Chapters and Pages"
Dim withoutParts As String = Replace(withParts, "and ", "")

编译代码

使用要操作的字符串替换 "Books and Chapters and Pages"。

请参见

参考

Replace 函数 (Visual Basic)

String 数据类型 (Visual Basic)