I have two strings as follows:
- "activityTypes": {"activityType": "COLLECTIONS"},
- "activityTypes": {"activityType": "E-DROP"},
Which I need to convert to -
- "activityTypes": [{"activityType": "COLLECTIONS"}],
- "activityTypes": [{"activityType": "E-DROP"}],
What would be the regular expression in java for the above transformation?