R/rp.R

Defines functions rp

Documented in rp

#' rp()
#'
#' remove punct from string
#'
#' @export
rp <- function(string){
  return(trimws(gsub("[[:punct:]]","",string)))
}
nbarsch/pineium documentation built on July 12, 2022, 11:40 p.m.