ColdFusion 中的 Wrap 功能是否插入 CR/LF?
我需要进行一些自动换行,但需要考虑一些因素:
源文件是 MS WORD
将文本复制并粘贴到 cfform 中的文本区域中。
使用
#wrap(theTextVar,80)#
转储文本 80 个字符文本已上传到需要上传 ansi 或 ascii 字符的旧系统。
一切似乎都正常,我只是想确认是否有其他人有幸这样做,以及他们是否知道在输出文本中的每一行之后是否输入了 CR / LF (步骤 3)?
I have the need to do some word wrapping with a few considerations:
Source file is MS WORD
Copy and paste the text into a textarea in a cfform.
Use
#wrap(theTextVar,80)#
to dump out the text 80 characters
The text is uploaded to a legacy system which needs ansi or ascii chars uploaded.
Everything seems to work okay, I just wanted to confirm see if anyone else has had luck doing this and if they know if a CR / LF is entered after each line in the outputted text (Step 3)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自wrap()的文档:
因此,如果您在 Windows 机器上执行此操作,那么答案是肯定的。
From the docs on wrap():
So if you are doing this on a Windows box, then the answer is yes.
试过这个吗?
Tried this?