paste ', ' in the way of pipe operator
a % % b 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 paste
'Hello' % % 'world'#> [1] "Hello world"'Your pastas taste like' % % '%>%'#> [1] "Your pastas taste like %>%"'Hello' %,% 'world...'#> [1] "Hello, world..."'Your pastas taste like ' %+% '%>%...' %,% 'or %>>%...'#> [1] "Your pastas taste like %>%..., or %>>%..."