Nothing
#' Strip characters from both ends of a string
#'
#' `strs_strip` removes leading and trailing characters (spaces by default) from
#' each element of a character vector. It is similar to Python's `str.strip()`
#' method.
#'
#' @param string A character vector where each element is a string to be
#' stripped.
#' @param chars An optional string of characters to be removed from both ends of
#' each element. If NULL, whitespace is removed.
#' @return A character vector of the same length as `string`, with specified
#' characters removed from both ends of each element.
#' @examples
#' strs_strip(" hello world ")
#' strs_strip("xxxyhello worldyyy", chars = "xy")
#' @seealso [Python str.strip() documentation](https://docs.python.org/3/library/stdtypes.html#str.strip)
#' @export
strs_strip <- function(string, chars = NULL) {
if (is.null(chars)) {
return(stringi::stri_trim_both(string))
}
chars <- stringi::stri_flatten(chars)
pattern <- stringi::stri_join("^[", chars, "]+|[", chars, "]+$")
stringi::stri_replace_all_regex(string, pattern, "")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.