I have contents of a hash table inform of a lengthy string as follows
"{key_1 : value_1}{key_2 : value_2}.....{key_n : value_n}"
I want to convert this back to hash table in few steps. Right now i remove the first/last character. Split by "}{" and each element of split array is again split by ":" and then pushed into a new hash table. Is there a simpler and easier way to do this?
thanks
Prakash