I'm curious to know why the inlist() function has a limit of 10 arguments for strings. Note that the number of arguments can be up to 255 for reals.
If I have a list of more than 10 strings, what are my options? Apart from:
-"breaking down" the list in two or more sub-lists and then using two or more inlist() functions joined by an "OR" condition;
-writing a very long list of "OR" conditions;
-looping over the elements of the list?
If I have a list of more than 10 strings, what are my options? Apart from:
-"breaking down" the list in two or more sub-lists and then using two or more inlist() functions joined by an "OR" condition;
-writing a very long list of "OR" conditions;
-looping over the elements of the list?
Comment