asp.net web 文本框中换行、空格的转换

C#中,TextBox-MultiLine 會使用到顯示時直接換行。


换行用" \r\t "表示,\r、\n的Unicode码分别为13、10;表示空格的Unicode码为32。
换行符转换方法:
(1) string newline=this.txtbody.Text.Replace("\x0D\x0A", "<br />");  
(2) string newline=this.txtbody.Text.Replace("\r\n", "<br />");  
(3) string newline = this.txtbody.Text.Replace(Char.ConvertFromUtf32(13)+Char.ConvertFromUtf32(10), "<br />");


空格转换方法:
(1) string newline=this.txtbody.Text.Replace("\x20", "&nbsp;");  
(2) string newline=this.txtbody.Text.Replace(Char.ConvertFromUtf32(32), "&nbsp;");

你可能感兴趣的:(Web,String,C#,asp.net,newline)