I want to use REGEX to extract the STRING in a curly bracket inside a curly bracket, because there are millions of rows and the position of the inside curly bracket is always different in the 'larger' curly bracket.
Here's the string:
{'eventData': {'type': 'page', 'name': 'chicken 2'},
'eventId': '1993',
'deviceType': 'keroppi',
'pageUrl': '/chicken 2',
'version': '1.0.0.1999-10_7_2020__4_18_30',
'sessionGUID': 'f4123f21-31ad-4e83-ba77-41231238',
'locationid': '0601eba9-1259-4ae6-bad5-7d1231239',
'eventDescription': 'Page Load'}
It could be like this:
{'eventId': '1993',
'deviceType': 'keroppi',
'pageUrl': '/chicken 2',
'eventData': {'type': 'page', 'name': 'chicken 2'},
'version': '1.0.0.1999-10_7_2020__4_18_30',
'sessionGUID': 'f4123f21-31ad-4e83-ba77-41231238',
'locationid': '0601eba9-1259-4ae6-bad5-7d1231239',
'eventDescription': 'Page Load'}
What I want is just the interior curly bracket: {'type': 'page', 'name': 'chicken 2'}
What is the regular expression to get the string after "'eventData':"
and before the ","
?