R/stringify.R

Defines functions stringify

Documented in stringify

#' Stringify
#' @param x character vector with stock name or ticker that should be modified into a string not having any dots, spaces or dashes
#' 
stringify <- function(x) {
  
  gsub("\\.|-| ", "_", x)
  
}
kristian-bak/shinyStocks documentation built on Aug. 16, 2022, 4:15 a.m.