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!
|
How can I check if a condition passes multiple values Example:
I know that commas don't work. EDIT: Thanks!
| |||||
feedback
|
| |||
|
feedback
|
| |||
|
feedback
|
|
What language? For example in VB.NET you use the word OR, and in C# you use || | |||
|
feedback
|
|
In T-SQL you can use the IN operator:
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:
| |||
|
feedback
|
|
Since you specify no language I add a Python solution:
| |||
|
feedback
|
|
I'll assume a C-Style language, here's a quick primer on IF AND OR logic:
So you can see how you can chain these checks together to create some pretty complex logic. | |||
|
feedback
|
|
For a list of integers:
| |||
|
feedback
|
|
If you are using PHP, then suppose your list of numbers is an array
then for any element, you can use
Function structure:
Hope that helps. | |||
|
feedback
|