I am kind of confused how to start. I have a string "abc df3 ghk", and I want to convert it to a vector of string or char (don`t know which one should I pick, I just need to separate them) as follows: input : "abc df3 ghk" output : vector output={"abc","df3","ghk"} I am confused how can I do this, I need to do this for several lines of input, each line will be converted to a vector.
Thank you for your help.