pasteInfix {cwhstring} | R Documentation |
Paste as infix
a %&% b
a |
an R objects, to be coerced to character vectors. |
b |
an R objects, to be coerced to character vectors. |
The concatenation of a
and b
, same as paste(a, b, sep="")
Christian W. Hoffmann, christian.hoffmann@wsl.ch, http://www.wsl.ch/staff/christian.hoffmann
String manipulation with
paste
,
as.character
, substr
, nchar
,
strsplit
; further, cat
which concatenates and
writes to a file, and sprintf
for C like string
construction.
"I am" %&% " hungry" # [1] "I am hungry"