I'm trying to figure out the best way to join (at a minimum) two pipe delimited text files on a common value, similar to SQL's Joins. Would I load the two files into lists and then split the strings? I'm kind of stuck.
My data is like this:
Text1.txt file
Bacon|Delicious|salty|lowcalorie
Sausage|Delicious|salty|highfat
Chicken|Chicken|chicken|highprotein
text2.txt file
Bacon|pork|cheap|crispy
Sausage|pork|cheap|null
Chicken|Chicken|moderate|sandwiches
Really i'd like to run a SQL query and just do a
Select * from Text1
FULL OUTER JOIN text2
ON text1.firstColumn=table2.firstColumn;