stringify_vec: Stringify vector

View source: R/stringify_vec.R

stringify_vecR Documentation

Stringify vector

Description

Converts a vector (named or unnamed) into a single string representation.

Usage

stringify_vec(vec, item_sep = ", ", name_sep = " = ", fmt = NULL)

Arguments

vec

The vector to be converted into a character string.

item_sep

The character separator to use between vector elements when converting the vector into a string.

name_sep

The character separator to use between names and values when converting the vector into a string (if names exist).

fmt

The format specification for the vector values (as a string), or NULL to use defaults (which would be as returned by format).

Value

A single character string representation of the vector.

Examples

stringify_vec(c(1, 2, 3))

stringify_vec(c(one = 1, two = 2, three = 3))

stringify_vec(c(alpha = 1, bravo = 2, charlie = 3), fmt = "%3.1f")


toniprice/jute documentation built on Jan. 11, 2023, 8:23 a.m.