以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  如何将换行转字符,字符再转换行  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=83246)

--  作者:cyl123
--  发布时间:2016/4/5 11:56:00
--  如何将换行转字符,字符再转换行
如何将换行转字符,字符再转换行
--  作者:大红袍
--  发布时间:2016/4/5 12:00:00
--  
Dim str As String = "123" & vbcrlf & "456"
msgbox(str)
str = str.Replace(chr(10), "").Replace(chr(13), "#")
msgbox(str)
str = str.Replace("#", vbcrlf)
msgbox(str)