Created
November 23, 2025 15:54
-
-
Save agricolamz/61da543a17ec51cc5f275118f2cfbe5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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