This is processed data(INPUT).
[['dObjectData.question':{ '$regex': '^(abc)', '$options': 'i'}],
['dObjectData.answer': { '$regex': '.*(pqr).*','$options': 'i' }]]
I want to make(modified this process data) in this format(OUTPUT).
[{'dObjectData.question':{'$regex':'^(abc)','$options':'i'},
'dObjectData.answer':{'$regex': '.*(pqr).*', '$options':'i'}]