Combine two lists by merging corresponding lines together. Choose any separator โ comma, tab, space, pipe or custom. Perfect for creating key=value pairs, CSV columns and more.
ExperToolBox's merge lines tool combines two lists by pairing each line from List A with the corresponding line from List B, joining them with any separator you choose. This is sometimes called "zipping" lists โ the same concept as Python's zip() function or paste -d in Unix.
Creating key=value configuration pairs from two separate lists. Building CSV data by combining a list of names with a list of values. Creating HTML option tags by merging values and display labels. Combining first names and last names. Merging URLs and descriptions. Building SQL insert values from two columns of data.