R/remove_urls.R

#' Remove strings that contain ://
#'
#' @param string a character string
#' @export
remove_urls <- function(string){
  indic<- stringr::str_detect(string, pattern = "://")
  return(string[!indic])
}
fboehm/wordtools documentation built on May 16, 2019, 11:10 a.m.