How to find matching Strings in 2 CSV files

Hello,
sorry guys I am absoltly new in rust...

file1.csv

user id, device uuid, ..., ..., ..., ..., ..., ...., Email Address

file2.csv

"DEVICE UUID","USER NAME","USER ID", ...,

I need the "Email Address" as output from file1.csv but only the devices that are in the file2.csv

Could sombody expain how to do that please ?

there are arround 2000 entries in file1.csv and may 1000 in file2.csv

You could load both CSV tables as polar's DataFrames and inner join them on "device uuid" I believe.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.