Learn R Programming

Kmisc (version 0.5.0)

us: unlist( strsplit( ... ) )

Description

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

Usage

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

Run this code
x <- "apple_banana_cherry"
us(x, "_")

Run the code above in your browser using DataLab