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

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 cwhmisc version 2.0.1 Index]