I would like to merge 2 dataframes, Problem is that the keys I am using do not contain the exact same values. So for example this is what df1 looks like
name val3
Wilder Deontay 1
Fury Tyson 2
Ortiz Luis 3
Joshua Olaseni Oluwafemi Anthony 4
and df2
name1 val
Deontay Wilder 19
Tyson Fury 20
Luis Ortiz 21
Anthony Joshua 10
The expected output is a merge of the two dataframes so
name1 val val3
Deontay Wilder 19 1
Tyson Fury 20 2
Luis Ortiz 21 3
Anthony Joshua 10 4