up vote 0 down vote favorite
1
share [g+] share [fb]

How can I check if a condition passes multiple values

Example:

if(number == 1,2,3)

I know that commas don't work.

EDIT: Thanks!

link|improve this question

4  
Which language? – csl Oct 7 '09 at 14:40
feedback

8 Answers

up vote 2 down vote accepted
if (number == 1 || number == 2 || number == 3)
link|improve this answer
thanks, umm additional characters needed. – Phil Oct 7 '09 at 14:48
feedback
if ((number >= 1) && (number <= 3))
link|improve this answer
Assumes the values will always be in order. – csl Oct 7 '09 at 14:39
feedback

What language?

For example in VB.NET you use the word OR, and in C# you use ||

link|improve this answer
feedback

In T-SQL you can use the IN operator:

select * from MyTable where ID in (1,2,3)

If you are using a collection there may be a contains operator for another way to do this.

In C# for another way that may be easier to add values:

    List<int> numbers = new List<int>(){1,2,3};
    if (numbers.Contains(number))
link|improve this answer
feedback

Since you specify no language I add a Python solution:

if number in [1, 2, 3]:
    pass
link|improve this answer
feedback

I'll assume a C-Style language, here's a quick primer on IF AND OR logic:

if(variable == value){
    //does something if variable is equal to value
}

if(!variable == value){
    //does something if variable is NOT equal to value
}

if(variable1 == value1 && variable2 == value2){
    //does something if variable1 is equal to value1 AND variable2 is equal to value2
}

if(variable1 == value1 || variable2 = value2){
    //does something if variable1 is equal to value1 OR  variable2 is equal to value2
}

if((variable1 == value1 && variable2 = value2) || variable3 == value3){
    //does something if:
    // variable1 is equal to value1 AND variable2 is equal to value2
    // OR variable3 equals value3 (regardless of variable1 and variable2 values)
}

if(!(variable1 == value1 && variable2 = value2) || variable3 == value3){
    //does something if:
    // variable1 is NOT equal to value1 AND variable2 is NOT equal to value2
    // OR variable3 equals value3 (regardless of variable1 and variable2 values)
}

So you can see how you can chain these checks together to create some pretty complex logic.

link|improve this answer
feedback

For a list of integers:

static bool Found(List<int> arr, int val)
    {
        int result = default(int);
        if (result == val)
            result++;

        result = arr.FindIndex(delegate(int myVal)
        {
            return (myVal == val);
        });
        return (result > -1);
    }
link|improve this answer
feedback

If you are using PHP, then suppose your list of numbers is an array

$list = array(1,3,5,7,9);

then for any element, you can use

if(in_array($element, $list)){
//Element present in list
}else{
//not present.
}

Function structure:

bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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