paste0 in the way of pipe operator
a %+% b
x | A string (or coerced to) |
---|---|
y | A string (or coerced to) |
The concatenation of x
and y
strings
This functions is a pipe version of paste0
'Hello ' %+% 'world'#> [1] "Hello world"'Your pastas taste like ' %+% '%>%'#> [1] "Your pastas taste like %>%"'coco' %+% 'bolo'#> [1] "cocobolo"