Adds a space after a comma as strip and many other functions may consider a
comma separated string as one word (i.e., "one,two,three"
becomes
"onetwothree"
rather than "one two three"
).
comma_spacer(text.var)
The text variable.
Returns a vector of strings with commas that have a space after them.
# NOT RUN {
x <- c("the, dog,went", "I,like,it", "where are you", NA, "why", ",", ",f")
comma_spacer(x)
# }
Run the code above in your browser using DataLab