Spacious Formatting For Inline ColdFusion Variable Evaluation

Posted April 30, 2007 at 7:52 AM

Tags: ColdFusion

I was just reading Elliott Sprehn's test cases for Ray Camden's Friday Puzzler when I came across something very interesting: at the end of his file, he has his hash signs (#) and his variables on different lines for inline evaluation. I have never seen this before, so naturally I had to test it:

 Launch code in new window » Download code as text file »

  • <!--- Set up girl object. --->
  • <cfset objGirl = StructNew() />
  • <cfset objGirl.Hair = "Brunette" />
  • <cfset objGirl.Cuteness = 9.5 />
  • <cfset objGirl.Hotness = 7.5 />
  • <cfset objGirl.Athletic = false />
  • <cfset objGirl.Curvey = true />
  •  
  •  
  • <!---
  • Determine general "hotness". This may or may
  • not correlate to the hotness factor.
  • --->
  • Girl Is Hot:
  •  
  • #
  • ListFind( "Brunette,Black", objGirl.Hair ) AND
  • (
  • (
  • objGirl.Athletic AND
  • (objGirl.Hotness GTE 8.5)
  • )
  • OR
  • (
  • objGirl.Curvey AND
  • objGirl.Cuteness GTE 8
  • )
  • )
  • #

Running that (to make sure we don't get any ColdFusion errors), we get:

Girl Is Hot: YES

Notice how spaced out the code is? I am not saying that I would necessarily do it this way, but I have variable evaluations that are very long and highly unreadable. It is nice to know that I can make things a bit more readable by breaking it up by lines. I am just shocked that the hash signs don't have to be directly next to either a variable or an expression. Very cool.

Remember people, 80% of the cost of a project goes into maintenance... make your code readable!

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Apr 30, 2007 at 8:07 AM // reply »
5 Comments

I don't find that very readable at all. Im sure ever situation is different and you are forced to write code like that sometimes, but if it starts getting unreadable, and especially if you are having to do the same code more than once, why not pull the logic out into a udf? even if its on the same page, it would be a ton more readable than that.


Apr 30, 2007 at 8:12 AM // reply »
6,371 Comments

@Ryan,

I agree, so far as pulling repeated code out into a UDF. Yes, there is a rare case where something like this would need to be done. And, while you might not find this readable, I am sure it is more readable than having that all on one line.


Gary Fenton
Apr 30, 2007 at 10:03 AM // reply »
15 Comments

You guys have missed the point. What I really want to know is did your Weird Science girl materialise? :-)


Apr 30, 2007 at 10:41 AM // reply »
6,371 Comments

Still working out the bugs in the computer program ;)


May 1, 2007 at 5:03 AM // reply »
4 Comments

Yeah it works, for the same reason you can do that kind of thing inside a <cfset> statement.

ColdFusion defines the cfset statement as:

<cfset ((Identifier|String) =)? expression>

Where the left hand side of the statement is optional, and the right hand side is an expression that evaluates to some value. Whitespace between any of the parts is valid, CF doesn't care if there's new lines or spaces before, or after the Identifier/String, expression or assignment operator.

The pound syntax in CF, which can be defined as #expression#, is just the right hand side of the cfset statement. We know this because CF forbids placing the left hand side of the statement inside pound signs. (ex. #foo = 1# is a compiler error).

Thus we can reason that whatever is allowed on the right hand side of a cfset is also allowed inside pound signs.

This has some curious implications as far as syntax goes because you can do something like:

<cfloop collection="#

server

#" item="name">
<cfoutput>#name#</cfoutput>
</cfloop>

We can also reason that:

"2sheep" EQ "#

1
+
1

#sheep"

And all kinds of other fun syntactic craziness. I'd not say this kind of thing is best practice for most cases, but it illustrates what CF sees when you use expressions.


May 1, 2007 at 7:15 AM // reply »
6,371 Comments

Yeah, certainly not best practices, but nice to know what can be done in a pinch.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 7, 2009 at 5:53 PM
Ask Ben: Javascript String Replace Method
You can find here an advanced function that prepared with javascript replace function. This can make the first letters of words, sentences, lines and whatever you define automatically: http://www.m ... read »
Andrew Neely
Nov 7, 2009 at 4:56 PM
A Moment That Touched Me - The Fountainhead
Ben, Glad you enjoyed the podcast. Yeah, the Tank Riot guys can get really chatty during the episodes, but that's part of the charm of it for me. They've covered everything from Nichola Tesla to Cha ... read »
Nov 7, 2009 at 4:43 PM
Building A Fixed-Position Bottom Menu Bar (ala FaceBook)
Is it possible to make some more MenĂ¼`s ? ... read »
Jill
Nov 7, 2009 at 11:40 AM
How To Unformat Your Code (Like A Pro)
Derek, I think you might be right - sweet! Thanks for the link :) ... read »
Nov 7, 2009 at 11:25 AM
How To Unformat Your Code (Like A Pro)
I think it would be way easier to just use this http://www.logichammer.com/html-formatter/ He just released v3 and it rocks. ... read »
Jill
Nov 7, 2009 at 7:58 AM
How To Unformat Your Code (Like A Pro)
LMAO - this was pretty funny! I have to admit - I also love to reformat code so I can read it. My boss used to tell me to leave my OCD at home. Now I don't feel so bad after reading everyone else' ... read »
Nov 6, 2009 at 10:10 PM
How To Unformat Your Code (Like A Pro)
The timing of this post is just uncanny. I spent the last 15-20 minutes manually un-formatting my "Ben Nadel" style code within a CFC of mine. I was really digging the readability a few weeks ago, bu ... read »
Roe
Nov 6, 2009 at 5:11 PM
Passing Arrays By Reference In ColdFusion - SWEEET!
ArraySort also reorders the results of these java obj's ... read »