paste ', ' in the way of pipe operator

a % % b

a %,% b

Arguments

x

A string (or coerced to)

y

A string (or coerced to)

Value

The concatenation of x and y strings

Details

This functions is a pipe version of paste

Examples

'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 %>>%..."