I am working on Google Store metadata and have it as a data frame. Per each app there is information about the requested permissions within a single cell, as a long text, for example:
READ SENSITIVE LOG DATA|RETRIEVE RUNNING APPS|FIND ACCOUNTS ON THE DEVICE|READ YOUR OWN CONTACT CARD|READ YOUR CONTACTS|
I want to separate the text between the "|" character into different cells (columns), so I can analyze existing permissions. I did not analyze text with R before. I tried using strings functions, however, when looking at the info within the cell, it is not recognized as a string.
Any suggestions, directions? Thanks!