Skip to contents

This is intended to be similar to Python + for strings, but vectorised. This is mainly to avoid the awkward syntax of base R base::paste0.

Usage

a %+% b

Arguments

a

A character object.

b

A character object.

Value

The concatenated string.

Examples

"3" %+% "a" #You get "3a"
#> [1] "3a"