vote up 2 vote down star

Currently I'm putting newlines in strings through one of these two methods:

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

OR

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

Is there anything more like the Java/C++ way? Something more like this I mean:

<cfset someStr="This is line 1\nThis is line 2\nThis is line 3" />
flag

5 Answers

vote up 8 vote down check

Your way is correct. There is no support for \n or \r in CF. From the 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
link|flag
vote up 5 vote down

If you are into platform-independent development, you can do:

<cfset NL = CreateObject("java", "java.lang.System").getProperty("line.separator")>

For example, in your application.cfm/cfc or somewhere else high-level and use that.

link|flag
that's pretty cool. i'm new to CF, so i haven't really tapped the potential of the underlying java code yet... – Kip Jun 12 at 18:01
vote up 3 vote down

i use this:

<cfset br = "#chr(13)##chr(10)#">
<cfset someStr="This is line 1#br#This is line 2#br#This is line 3" />
link|flag
2  
Marc, let's do without the quotes and #'s- <cfset br = chr(13) & chr(10) /> – Nathan Strutz Jun 12 at 17:56
3  
you'll rip quotes and pound signs out of my cold, dead hands Nathan! – marc esher Jun 12 at 21:28
vote up 1 vote down

Not directly in CF, I'll leave it to the CF-Java dudes to say whether you can use a Java method directly on a CF var to achieve what you want, but...

You could use cfsavecontent to put natural line breaks in:

<cfsavecontent variable="someStr">
This is line 1
This is line 2
This is line 3
</cfsavecontent>

Then check it with:

<cfoutput>
<pre>#Trim(someStr)#</pre>
</cfoutput>

Note that the Trim() is there to get rid of the first and last line breaks if you don't want them.

link|flag
vote up 0 vote down

I was wondering if something like this would work:

<cfset str = CreateObject("java", "java.lang.String").init("Line 1\nLine 2\nLine 3")>

<cfoutput>
<pre>#str#</pre>
</cfoutput>

Alas no :O(

link|flag
1  
This feeds a CF string to .init(). And a CF string does not understand "\n". That's a kind of problem I like to refer to as "can-opener in a can". :-) – Tomalak Jun 12 at 16:22
good try though! :) – Kip Jun 12 at 18:00

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.