R/Str_C_Operator.R

#'Rapid string parsing
#'
#'Method for quicker pasting of Strings.
#'
#'@rdname stringpaste
#'@usage a \%+\% b
#'@title Operator for concatenation.
#'@param a The first String
#'@param b The second String
#'
#'@return character formatted concatenation of both input strings.
#'
#'@export
"%+%" <- function(a, b) stringr::str_c(a, b, sep = "")

Try the Revticulate package in your browser

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

Revticulate documentation built on March 18, 2022, 6:47 p.m.