inst/shiny/modules/utils.R

#' Rectify special characters.
#' 
#' @param x character vector to work on
#' @export rectifySpecialChars
rectifySpecialChars <- function(x){
  x <- gsub('\u201E', '"', x)
  x <- gsub('\u201C', '"', x) 
  x
} 
PolMine/polmineR documentation built on Nov. 9, 2023, 8:07 a.m.