I have list which have this structure
ex1.
[[1]]
[1]"blah blah~"
ex2.
[[1]]
[1]"blah blah~~~"
[2]"fmlafmlaf~~"
ex3.
[[1]]
[1]"blaaaa~"
When I use paste function, ex1, ex3 make the outcome tidy. like below.
[[1]]
[1]"~~~sth"
However, In example 2, it has 2 components in one big list and the outcome of paste function is sth like dirty. I mean
[[1]]
[1] "c(\ "blah blah~~~" ...
So suddenly "c(\ ..~ , \n" appears and make my outcome dirty.
Even more, sometimes the paste function didn't work and the components didn't mixed.
What should I do?