Set theory operations on text lists are extremely useful for data analysis, database query results, user permission management, and any scenario where you need to compare two groups of items. This tool brings the power of SQL set operations (UNION, INTERSECT, EXCEPT) to plain text lists.
Put the first list in List A and the second in List B, then use "A minus B". The result is all items from A that don't appear in B — perfect for email list management.
The symmetric difference contains items that appear in exactly one of the two lists — either in A but not B, or in B but not A. It's equivalent to (A minus B) + (B minus A) combined.