evaluateSplit {utilitiesR} | R Documentation |
convert a delimited string to a vector.
evaluateSplit(x)
x |
the delimited string. |
Essentially calls c(...) on the arguments, after delimiting them. Delimited by 'x' or ','
Other demo: DWE
, evaluate
,
PEv
, wait
Other evalParse: evaluate
evaluateSplit('1,2,3') # returns c(1,2,3) evaluateSplit('640x480') # returns c(640,480)