How can i compare a character in C with other characters without using an 'if' with tons of '||'? For example let's say I have a character named 'i' that I want to compare with 8 other characters that have no connection between them whatsoever, and if 'i' equals to at least one of those 8 characters then the expression is true. Something like this:
if(i == c1 || i == c2 || i == c2 ........){ /* do stuff */}
But on a big application these comparisons are a lot, not just 3 or 8. Is there a smart and fast way to achieve something like this and not end up with ugly looking code? Thank you in advance.
Assuming your
'c1'
, ... are just a singlechar
constants, you can use:("12345" are
c1
,c2
, ...)strchr()
will, however, also match the implcit trailing NUL terminator ('\0'
). If that is a problem, you can compare this value explicitly. As the input string is searched from start, you might want to have the more propable values at the beginning.Note that
strchr
does return a pointer to the matching char; just if you need that.If you can group the values, e.g. "letters", "digits", etc., have a look at ctype.h.
If the values are variables, you can either copy them into an array of
char
before the compare (do not forget about the trminator!) or hold them in the array anyway:array[0]
isc1
, ... .If all this is not possible, you are likely busted with
strcpy
. You could use this:You could pack that into a function with some decoration here and there.