library(tidyverse) library(fuzzyjoin) df1 <- tibble(col1 = c(\"apple\", \"banana\", \"carrot\"), col2 = as.numeric(0:2), col3 = as.nu
Voila :)
fuzzy_left_join(df1, df2, match_fun = ci_str_detect, by = c(col1 = "col4"))