paste00: paste with null or dot as separator and with collapse

View source: R/pastedot.R

paste00R Documentation

paste with null or dot as separator and with collapse

Description

Call base::paste() with sep="." or sep="" and collapse="" or collapse=".".

Usage

paste00(...)

Arguments

...

Passed to paste.

Details

There's not much to these functions. paste00(...) is like paste(..., sep="", collapse="") paste..(...) is like paste(..., sep=".", collapse=".") paste0.(...) is like paste(..., sep="", collapse=".") paste.0(...) is like paste(..., sep=".", collapse="")

Value

A character string or vector of character strings.

See Also

base::paste(), base::paste0(), paste.()

Examples

x <- c(3, 4)
y <- c(5, 6)
paste00(x, y)
paste..(x, y)
paste0.(x, y)
paste.0(x, y)


broman documentation built on July 8, 2022, 5:07 p.m.

Related to paste00 in broman...