vote up 0 vote down star
1

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!

flag

75% accept rate
4  
Which language? – csl Oct 7 at 14:40

8 Answers

vote up 2 vote down check
if (number == 1 || number == 2 || number == 3)
link|flag
thanks, umm additional characters needed. – Phil Oct 7 at 14:48
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

Haha! Wow! Thanks guys,

I tried (number == 1),(number == 2)

and (number 1 || 2 || 3)

Thanks again for the quick response...

link|flag
vote up 0 vote down

Since you specify no language I add a Python solution:

if number in [1, 2, 3]:
    pass
link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

What language?

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

link|flag
vote up 1 vote down
if ((number >= 1) && (number <= 3))
link|flag
Assumes the values will always be in order. – csl Oct 7 at 14:39

Your Answer

Get an OpenID
or

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