My question is very similar to the question below, with the added problem that I need to split by a double-space.
Split column at delimiter in data frame
I would like to split this vector into columns.
text <- "first second and second third and third and third fourth"
The result should be four columns reading "first", "second and second", "third and third and third", "fourth"