Except::lenmod
Details
Examples
Basic Examples (1)
The second argument in Except is a pattern that stands for a sequence of expressions:
Cases[{{5, 9}, {7, 8, 9}, {11, 3, 17}, {7, 9, 11}}, Except[{__ ? PrimeQ}, __ ? OddQ]]Pick the sublists in which all of the elements are odd but not all of the elements are prime:
Cases[{{15, 1}, {7, 8, 9}, {11, 3, 17}, {7, 9, 11}}, Except[{__ ? PrimeQ}, {__ ? OddQ}]]