如何从Combobox项中删除特定文本

时间:2016-08-03 18:23:07

标签: vb.net

我想要做的是能够移除字符串的一部分并使用其余部分添加到Combobox。

Dim randString As String = ""
textbox.text = "(Remove this) - Keep this"
randString = textbox.text.... ' Trim/Split the first portion off somehow?
combobox.items.add(randString)

' Result should look like " - Keep this"

我没有运气就试过Trim / Split。有人能指出我正确的方向吗?感谢。

1 个答案:

答案 0 :(得分:2)

如果您只想删除部分字符串,可以使用替换功能:

randString = Replace(textbox.text, "(Remove this)", "")

您可以将任何字符串变量作为第二个参数。