Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要获取一些原始文本并将换行符转换为 HTML 中断。
这不起作用。
myhtml=Replace(myhtml, chr(13), "<br>")
做什么?
Chr(13) 可能不是文本中的行尾,Replace() 也仅适用于第一次出现。尝试这个...
myhtml = ReplaceAll(myhtml, EndOfLine.Unix, "<br>")
并使用 EndOfLine 变体 Macintosh 和 Windows 进行测试。