R/rm_punc.R

#' Remove Punction from Vector of Text
#'
#' Remove Punction from Vector of Text.
#'
#' @param xx text string / vector
#' @export
rm_punc <- function(xx){
  rm_extra_ws(gsub("[:punct:]"," ",xx))
}
steventsimpson/kleentex documentation built on May 30, 2019, 4:48 p.m.