We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356fce9 commit bf66da3Copy full SHA for bf66da3
R/01-utils.R
@@ -87,7 +87,7 @@ make_names_vec <- function(x)
87
nms <- stringr::str_replace_all(nms, "\\.|-|/|\\(|\\)|&|\\?", "_") # replace . - \ ? to _ (underscore)
88
nms <- stringr::str_replace_all(nms, "[_]+", "_") # replace multiple underscores by one
89
nms <- stringr::str_replace_all(nms, "[_]+$", "") # remove trailing underscores
90
- nms <- stringr::str_replace_all(nms, "ß", "ss")
+ nms <- stringr::str_replace_all(nms, "\u00DF", "ss")
91
nms <- stringr::str_replace_all(nms, "\u00E4", "ae") # replace German umlauts by their two letter ASCII version
92
nms <- stringr::str_replace_all(nms, "\u00FC", "ue")
93
nms <- stringr::str_replace_all(nms, "\u00F6", "oe")
0 commit comments