R/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.shiny documentation built on May 8, 2019, 3:20 a.m.