R/rm_nonascii.R

#' Remove Non-ASCII Characters
#'
#' Remove Non-ASCII Characters.
#'
#' @param xx text string / vector
#' @export
rm_nonascii <- function(xx){
  rm_extra_ws(gsub("[^ -~]", " ", xx))
}
data-steve/kleentex documentation built on May 14, 2019, 6:17 p.m.