Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从 vb.net 2010 中的文本框中删除特定单词
示例:我有一个显示“Hello World”的文本框和一个会复制它但只显示“World”的文本框
我当前的代码删除所有字母。
textbox2.Text = New String(textbox2.Text.Except("Hello").ToArray())
谢谢
使用String.Replace.
String.Replace
textbox2.Text = textbox1.Text.Replace("Hello", "").Trim()
Except("Hello")将过滤掉每个H,e和lando不是你想要的。
Except("Hello")
H
e
l
o