Skip to content

Instantly share code, notes, and snippets.

@agricolamz
Created November 23, 2025 15:54
Show Gist options
  • Select an option

  • Save agricolamz/61da543a17ec51cc5f275118f2cfbe5c to your computer and use it in GitHub Desktop.

Select an option

Save agricolamz/61da543a17ec51cc5f275118f2cfbe5c to your computer and use it in GitHub Desktop.
embrase <- function(string){
if(is.na(string)){
string
} else {
string |>
str_remove_all("[\\{\\}]") |>
str_replace_all("((?<=[ABCDEFGHIJKLMNOPQRSTUVWXYZАБВГДЕËЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ]))",
"\\}\\1") |>
str_replace_all("((?=[ABCDEFGHIJKLMNOPQRSTUVWXYZАБВГДЕËЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ]))",
"\\1\\{")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment