R/rn.R

Defines functions rn

Documented in rn

#' rn()
#'
#' remove numbers from string
#'
#' @export
rn <- function(string){
  return(trimws(gsub("[[:digit:]]","",string)))
}
nbarsch/tfwstring documentation built on May 4, 2023, 5:26 a.m.