R/elim.r

Defines functions elim

Documented in elim

#' Remove front parts of copied paths
#' @param a path to files
#' @return a cleansed path to a folder of documents
#' @export


elim <- function(a){
  b <- gsub("file:\\/\\/\\/", "", a)
  return(b)
}
cownr10r/r7283 documentation built on Sept. 29, 2022, 9:39 a.m.