C#中,TextBox-MultiLine 會使用到顯示時直接換行。
换行用" \r\t “表示,\r、\n的Unicode码分别为13、10;表示空格的Unicode码为32。
换行符转换方法:
(1) string newline=this.txtbody.Text.Replace(”\x0D\x0A", “
”);
(2) string newline=this.txtbody.Text.Replace("\r\n", “
”);
(3) string newline = this.txtbody.Text.Replace(Char.ConvertFromUtf32(13)+Char.ConvertFromUtf32(10), “
”);
空格转换方法:
(1) string newline=this.txtbody.Text.Replace("\x20", " ");
(2) string newline=this.txtbody.Text.Replace(Char.ConvertFromUtf32(32), " ");
————————————————
版权声明:本文为CSDN博主「eley」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/loeley/article/details/6938104
本文介绍在C#中处理TextBox多行显示时,如何使用'
'、'
'和Unicode码替换换行符,以及如何转换空格为HTML实体。详细讲解了字符串替换方法和版权信息。
453

被折叠的 条评论
为什么被折叠?



