According to the documentation, IS and EQ do exactly the same thing, just like IS NOT and NEQ are aliases of one another. Same goes for GREATER THAN and GT, etc..
-Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com ----- Original Message ----- From: "Clint Tredway" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, June 26, 2002 11:09 AM Subject: Re: String Manipulation troubles > First off,trim your var in the if statement and then change the "IS" to "eq". I have had this problem before and by always trimming my vars and using eq instead of is, I have had far less problems like this. > > HTH > Clint > > ---------- Original Message ---------------------------------- > from: Brian Scandale <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > date: Wed, 26 Jun 2002 00:49:35 -0700 > > Why doesn't this <cfif> statement catch the "]" character? > > Or a better question is How do i branch on that character... chr(93) doesn't work either. > > <cfset temp = "]" > > <cfoutput><br>temp = #temp#<br></cfoutput> > > <cfif temp IS "]"> > <cfoutput><br>temp = #temp#<br></cfoutput> Yep It Works! > </cfif> > > > ______________________________________________________________________ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

