I have a dataset as follow
1       Saturday,SatAug 13, 2016-5:30 PM
2                  54.362·Robert Madley
3         Sunday,SunAug 14, 2016-1:30 PM
4        11.355 sold out·Andre Marriner
And What I wanna do is to separate dataset by "," or "·" and then make it as matrix or dataframe. In case of line4, 11.355 and "sold out" is also needed to be split. So final dataset should be
date       date1       time           a        f                s
Saturday   SatAug 13   2016-5:30 PM   54.362   Robert Madley
Sunday     SunAug 14   2016-1:30 PM   11.355   Andre Marriner   sold out
 
     
    