I have some string which is similar to JSON file:
string <- "{'text': u'@RobertTekieli @Czerniakowianka @1234Mania mysle, ze nie weszlabym do zadnego wiezienia bez straznikow', 'created_at': u'Tue May 20 08:16:55 +0000 2014'}"
I want to extract two strings -which are after text
and created_at
@RobertTekieli @Czerniakowianka @1234Mania mysle, ze nie weszlabym do zadnego wiezienia bez straznikow
and
Tue May 20 08:16:55 +0000 2014
I want to do it with regex not with fromJSON
function or something like that. But actually I don't know how. Any suggestion?