0

我怎样才能替换这个字符串:

<say"Hello">

与 VB.net 中的另一个字符串?这个程序不工作!

Text1.Text = Text1.Text.Replace("<say"Hello">", " ")
4

1 回答 1

2

要在字符串中获取文字引号,请使用双引号 ( ""),如下所示:

Text1.Text = Text1.Text.Replace("<say""Hello"">", " ")

然后该字符串将被解释为:

<say"Hello">
于 2013-07-29T08:14:07.113 回答