paste.: paste with dot separator

View source: R/pastedot.R

paste.R Documentation

paste with dot separator

Description

Calls base::paste() with sep=".".

Usage

paste.(...)

Arguments

...

Passed to paste.

Details

There's not much to this function. It just is base::paste() with sep="", 'cause I'm lazy.

Value

A character string or vector of character strings.

See Also

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

Examples

x <- 3
y <- 4
paste.(x, y)


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

Related to paste. in broman...