When performing string manipulations on Ukrainian characters, it sometimes does not recognize and/or transforms the matched characters:
Sys.setlocale("LC_CTYPE", "russian")
Sys.setlocale("LC_CTYPE", "ukr")
d <- tibble::tribble(
~a , ~ b,
"громада", "область"
)
d %>% mutate(a = str_remove(a,"гр"))

Please investigate this behavior and report possible solutions