infix-concatenation {pkgcond} | R Documentation |
Infix string concatenation.
Description
The infix operators listed here are three versions of paste.
-
%\%
is for preserving line breaks -
%<<%
is an infix replacement forpaste
-
%<<<%
is paste with no space and no break."
Usage
lhs %<<% rhs
lhs %<<<% rhs
Arguments
lhs |
left string |
rhs |
right string |
Examples
who <- "world"
'hello_' %<<<% who
'Sing with me' %<<% head(letters) %<<% '...'
[Package pkgcond version 0.1.1 Index]