Re: making strings.. good practice??

2006-07-24 Thread Charlie Griefer
i prefer cfset a = b blah blah c /, but that's just personal preference (i find it easier to read with less poundage). but neither way is more right or more wrong (IMO YMMV). On 7/24/06, Brian Dumbledore [EMAIL PROTECTED] wrote: I know the subject line is a bit foggy, but I was going through

RE: making strings.. good practice??

2006-07-24 Thread Andy Matthews
One thing to consider is that there may be certain cases where you can't use the a b method. Either way is perfectly acceptable. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737

RE: making strings.. good practice??

2006-07-24 Thread Ben Nadel
Brian, In my opinion, when you are making very small strings, is not going to be different than # in terms of performance, so you have to go with which ever is easier for the situation. Also take into account which makes the code easier to read / maintain. Which is easier to read: cfset FORM[

Re: making strings.. good practice??

2006-07-24 Thread Brian Dumbledore
Hmm.. Seems doesn't really make a difference.. Only downside of the hashes I see is that you may easily miss them in the string. But they are faster to write and cleaner ( I think ). Once again thanks a lot y'all for your time..