Having a dataframe like this:
data.frame(text = c("separate1: and: more","another 20: 42")
How is it possible to separate using the first : in every row? Example expected output
data.frame(text1 = c("separate1","another 20"), text2 = c("and: more","42")