Standardize strings prior to performing a match, using the following transformations:
standardize case (
base::toupper
)remove accents/diacritics (
stringi::stri_trans_general
)replace punctuation characters with whitespace
remove extraneous space characters with (
stringr::str_squish
)