The generic normalization that underpins functions like normal_city() and
normal_address(). This function simply chains together three
stringr::str_*() functions:
Convert to uppercase.
Replace punctuation with whitespaces.
Trim and squish excess whitespace.
Usage
str_normal(x, case = TRUE, punct = "", quote = TRUE, squish = TRUE)