pasteInfix {cwhstring}R Documentation

Paste(infix)

Description

Paste as infix

Usage

a %&% b

Arguments

a an R objects, to be coerced to character vectors.
b an R objects, to be coerced to character vectors.

Value

The concatenation of a and b, same as paste(a, b, sep="")

Author(s)

Christian W. Hoffmann, christian.hoffmann@wsl.ch, http://www.wsl.ch/staff/christian.hoffmann

See Also

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.

Examples

"I am" %&% " hungry" # [1] "I am hungry"

[Package cwhstring version 1.0.3 Index]