在从TextBox获取的字符串中用<<替换下一行

时间:2016-02-28 16:19:13

标签: c# .net

我需要在从文本框中获取的字符串中用<br>替换New Line。目前我使用此

string text= textbox.Text;
text.Replace(System.Environment.NewLine, "<br>");

但是当我使用MessageBox.show(text);

进行测试时,没有任何内容被替换

1 个答案:

答案 0 :(得分:1)

string.Replace 返回一个string。这样做:

string text= textbox.Text;
text = text.Replace(System.Environment.NewLine, "<br>"); //note the text = ...

你几乎就在那里,除了你在代码中所做的事情并没有返回string.Replace的结果。