1

我不是在谈论:

if textbox1.text.contains(textbox2.text) then
textbox1.text = ""
end if

但是这个:

如果 textbox1 包含 textbox2 中也存在的任何字符,则在单击按钮时会自动删除。

谢谢,

4

3 回答 3

2

你可以使用类似的东西

textbox1.Text = new String(textbox1.Text.Except(textbox2.Text).ToArray())

或一个简单的For Each循环。

于 2013-09-03T07:57:33.117 回答
1
  ' btn click event
  Dim unique As List(of String)
  For i As Integer = 0 to textbox2.text.length - 1
    Dim c As String = textbox2.text.substring(i,1)
    If not unique.contains(c)
      textbox1.text = textbox1.text.replace(c, "")
      unique.add(c)
    End If
  Next For
于 2013-09-03T08:01:11.417 回答
0

您还可以使用Regex

textbox1.Text = Regex.Replace(textbox1.Text, _
    "[" & Regex.Escape(textbox2.Text).Replace("-", "\-")  & "]", "")
于 2013-09-04T17:17:49.727 回答