我试图找到删除特定的字符串。
If nameList1.Text.IndexOf(TextBox1.Text) Then nameList1.Text = nameList1.Text + nameList1.Text.Remove(start, theEnd) End If
我的开始和结束设置为用户输入的值,有人会介意帮忙吗?
答案 0 :(得分:1)
我想你想要:
substring(start, length)
或者您可以使用替换
bigString.replace(littleString, "")
我确信Google或搜索堆栈溢出可以更快地回答您的问题。