查找和删除VB

时间:2011-12-16 01:05:14

标签: vb.net string

我试图找到删除特定的字符串。

    If nameList1.Text.IndexOf(TextBox1.Text) Then
        nameList1.Text = nameList1.Text + nameList1.Text.Remove(start, theEnd)
    End If

我的开始和结束设置为用户输入的值,有人会介意帮忙吗?

1 个答案:

答案 0 :(得分:1)

我想你想要:

substring(start, length)

或者您可以使用替换

bigString.replace(littleString, "")

我确信Google或搜索堆栈溢出可以更快地回答您的问题。