gpt4 book ai didi

syntax - 如何在ColdFusion中的字符串中编写换行符?

转载 作者:行者123 更新时间:2023-12-03 09:17:12 24 4
gpt4 key购买 nike

目前,我正在通过以下两种方法之一在字符串中添加换行符:

<cfset someStr="This is line 1" & Chr(10) & "This is line 2" & Chr(10) & "This is line 3" />

要么
<cfset NL=Chr(10) />
<cfset someStr="This is line 1#NL#This is line 2#NL#This is line 3" />

还有其他类似Java / C++的方式吗?我的意思是这样的:
<cfset someStr="This is line 1\nThis is line 2\nThis is line 3" />

最佳答案

你的方法是正确的。 CF中不支持\ n或\ r。从Live Docs

  • Chr(10) returns a linefeed character
  • Chr(13) returns a carriage return character
  • The two-character string Chr(13) & Chr(10) returns a Windows newline

关于syntax - 如何在ColdFusion中的字符串中编写换行符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/987175/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com