Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a function which searches users by their e-mail. If a user is found, the function returns the userid. Otherwise it returns false.

How may I evaluate this userid which looks like 12202436120g1200069971 to true?

share|improve this question
2  
This makes no sense. Can you reword the actual question? – gahooa Feb 6 '12 at 13:18

2 Answers

up vote 6 down vote accepted
<cfif userid NEQ false>
  // do something
<cfelse>
  // do something else
</cfif>
share|improve this answer
I would also add a comment on the IF statement explaining that it's not a flat-out boolean evaluation (ie: from that statement, it looks like userid is a boolean, not a string which might happen to hold "false"), which explains what looks like a cortorted way of saying <cfif userid>, which is what someone might mistake it as. I think having a method which returns a mix of string or boolean is a poor approach (for this very reason), btw. – Adam Cameron Feb 6 '12 at 16:57
This is a good approach and will work fine, but I don't think its very expressive. It implies that userid is a boolean value, which because of the power of ColdFusion many things are implicitly converted to booleans. However, if you are mentally parsing the code in your head it reads "if the value of user id is false" in which you'll have to do the implicit conversion in your head. Its why I take the approach I did in my answer. It reads, "if the userid has a length do this other wise do this". In my opinion it is more expressive but it is just an opinion. – bittersweetryan Feb 7 '12 at 13:04

If I understand correctly I'd do something like:

if(len(userid)){
   //true
}
else{
  //false
}

In ColdFusion 0 is false and any other number (negative or positive) is true.

share|improve this answer
1  
I second bittersweetryan's answer with a minor clarification. It is not a great idea to return different variable types for a function (ex: string or boolean/false), or at least one this straight forward. Sending back a string that is either the userid or blank would be best, in which case you can use len() as stated. – Dan Roberts Feb 6 '12 at 17:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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