pasteInfix {cwhmisc} | 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 <c-w.hoffmann@sunrise.ch>
http://www.wsl.ch/personal_homepages/hoffmann/index_EN
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"