R/cleanFun.R

Defines functions cleanFun

cleanFun <- function(string){
    # Internal function to strip tags from string.
    #    
    # Args:
    #   string: a character string with tags
    #    
    # Returns:
    #   original string with tags removed
  return(gsub("<.*?>", "", string))
}

Try the transcribeR package in your browser

Any scripts or data that you put into this service are public.

transcribeR documentation built on May 2, 2019, 5:09 a.m.