toString_to_characterString.Rd
Usually helpful in setting extracting levels elsewhere in the code.
toString_to_characterString(string, sep = ",", stripWhitespace = TRUE)
string | Long string with delimters, may be output of 'toString'. |
---|---|
sep | delimiter. Default is ",". |
stripWhitespace | Whether to trim whitespace on both sides of resulting strings. |
A string ready to constructed.
#> [1] "Sepal.Length, Sepal.Width, Petal.Length, Petal.Width, Species"toString_to_characterString(concat)#> [1] "c('Sepal.Length', 'Sepal.Width', 'Petal.Length', 'Petal.Width', 'Species')"#> [1] "Sepal.Length" "Sepal.Width" "Petal.Length" "Petal.Width" "Species"