#' @title Pre harmonize names sirius
#'
#' @description This function pre harmonizes Sirius names
#' to make them compatible
#'
#' @param x Character string containing a name
#'
#' @return Character string with the name modified according
#' to the rules specified in the function
#'
#' @examples prepared_name <- tima:::pre_harmonize_names_sirius("My name/suffix")
pre_harmonize_names_sirius <- function(x) {
## Remove any characters after and including the '/' character from the name
y <- x |>
stringi::stri_replace_all_regex(
pattern = "/.*",
replacement = "",
vectorize_all = FALSE
)
return(y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.