str_view(words, "([[:letter:]]).*\\1", match = TRUE)
Does this work? E.g. "achieve" does not have a matching PAIR of letters.
str_view(words, "([[:letter:]]).*\\1", match = TRUE)
Does this work? E.g. "achieve" does not have a matching PAIR of letters.