#' Remove Punctuation From String
#'
#' @param string string to remove punctuation from
#'
#' @return string with punctuation removed, only letters and whitespace will remain
#' @export
#'
#' @examples
#' remove_punctuation("4534dog 4328hello")
remove_punctuation <- function(string) {
gsub("[^[:alpha:][:space:]]*", "", string)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.