evaluateSplit {utilitiesR}R Documentation

convert a delimited string to a vector.

Description

convert a delimited string to a vector.

Usage

  evaluateSplit(x)

Arguments

x

the delimited string.

Details

Essentially calls c(...) on the arguments, after delimiting them. Delimited by 'x' or ', '

See Also

Other demo: DWE, evaluate, PEv, wait

Other evalParse: evaluate

Examples

evaluateSplit('1, 2, 3')       # returns c(1, 2, 3)
evaluateSplit('640x480') # returns c(640, 480)

[Package utilitiesR version 2.0 Index]