← All tools
// Text

List Set Tools online

Merge, intersect, diff, and zip two text lists — runs in your browser

Chunky Munster mascot
by
CHUNKY
MUNSTER
// Union (A ∪ B)
Output will appear here...

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.

Set Operations Explained

Frequently Asked Questions

How do I find emails in one list that aren't in another?

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.

What is the symmetric difference?

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.