us: unlist( strsplit( ... ) )

Description Usage Arguments See Also Examples

View source: R/misc.R

Description

This is a thin wrapper to unlist( strsplit( ... ) ) . Primarily intended for interactive, not programmatic, use.

Usage

1
us(x, split = "", ...)

Arguments

x

vector of items, as passed to strsplit

split

the delimiter to split on

...

optional arguments passed to strsplit

See Also

unlist, strsplit

Examples

1
2
x <- "apple_banana_cherry"
us(x, "_")

Kmisc documentation built on May 29, 2017, 1:43 p.m.

Related to us in Kmisc...