Concatenate Two Character Vectors
Binary operators for joining (concatenating) two character vectors, with a typical R look-and-feel.
e1 %s+% e2 e1 %stri+% e2
e1 |
a character vector or an object coercible to a character vector |
e2 |
a character vector or an object coercible to a character vector |
Vectorized over e1 and e2.
Returns a character vector.
Other join:
stri_dup(),
stri_flatten(),
stri_join_list(),
stri_join()
c('abc', '123', 'xy') %s+% letters[1:6]
'ID_' %s+% 1:5Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.