Learn R Programming

spatstat.utils (version 3.1-2)

commasep: List of Items Separated By Commas

Description

Convert the elements of a vector into character strings and paste them together, separated by commas.

Usage

commasep(x, join = " and ", flatten = TRUE)

Value

A character string (if flatten=TRUE, the default) or a list of character strings.

Arguments

x

Vector of items in the list.

join

The string to be used to separate the last two items in the list.

flatten

Logical value indicating whether to return a single character string (flatten=TRUE, the default) or a list (flatten=FALSE).

Author

Adrian Baddeley Adrian.Baddeley@curtin.edu.au.

Examples

Run this code
   commasep(letters[1:4])
   y <- commasep(sQuote(letters[1:4]))
   cat(y, fill=TRUE) 

Run the code above in your browser using DataLab