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.
我怎样才能替换这个字符串:
<say"Hello">
与 VB.net 中的另一个字符串?这个程序不工作!
Text1.Text = Text1.Text.Replace("<say"Hello">", " ")
要在字符串中获取文字引号,请使用双引号 ( ""),如下所示:
""
Text1.Text = Text1.Text.Replace("<say""Hello"">", " ")
然后该字符串将被解释为: