2016-11-02 09:38:53, 22822, 33067, 6.79, Abc, Cedfgh Pqrst 12Abc
I want to read the above-given data into 5 columns of the data frame. The Last column i.e column 5 can have delimiter character but it should be ignored and consider as one whole string in R.
Hence to put in R terms:
data.frame(Var1 = "2016-11-02 09:38:53", Var2 = "22822", Var3 = "33067", Var4 = "6.79", Var5 = "Abc, Cedfgh Pqrst 12Abc")