powered by
Converts a string into a string-formatted vector (e.g., "a<|>b<|>c" -> c("a", "b", "c")).
"a<|>b<|>c"
c("a", "b", "c")
string_to_string_vector(str)
A string representing a vector in R syntax (e.g., c("a", "b", "c")), or "\"\"" if the input string is empty.
"\"\""
character A string to transform.
character