%.% {pvar} | R Documentation |
Concatenate strings
Description
Concatenate Strings
Usage
x %.% y
Arguments
x |
asd |
y |
asd |
Details
The same result may be achieved with paste
, but in some circumstance this function is more user friendly.
Value
A character string of the concatenated values.
See Also
Examples
paste('I ', 'love ', 'R.', sep='')
'I ' %.% 'love ' %.% 'R.'
x = c(2,1,6,7,9)
paste('The length of vector (', paste(x , sep='', collapse =','), ') is ', length(x) , sep='')
'The length of vector (' %.% paste(x , sep='', collapse =',') %.% ') is ' %.% length(x)
[Package pvar version 2.2.7 Index]