R/rt.R

Defines functions rt

Documented in rt

#' rt()
#'
#' remove txt and get only number
#'
#' @export
rt <- function(string){
  return(trimws(gsub("[[:alpha:]]","",string)))
}
nbarsch/tfwstring documentation built on May 4, 2023, 5:26 a.m.