4 lines
109 B
R
4 lines
109 B
R
|
|
text <- "Hello,How,Are,You,Today"
|
||
|
|
junk <- strsplit(text, split=",")
|
||
|
|
print(paste(unlist(junk), collapse="."))
|