p {err}R Documentation

Paste

Description

Wrappers on paste and paste0 to increase the readability of code.

Usage

p(..., sep = " ", collapse = NULL)

p0(..., collapse = NULL)

Arguments

...

one or more R objects, to be converted to character vectors.

sep

a character string to separate the terms. Not NA_character_.

collapse

an optional character string to separate the results. Not NA_character_.

Value

A string of the pasted values.

Functions

Examples

p("The", "red")
p0("ard", "vark")

[Package err version 0.2.0 Index]