Cocokkan objek dalam string menggunakan regex

// "{a:42,b:{c:{d:{e:43}}}}" to match an object that is a string
/.((?:\{[^}]*\}))/
Envious Echidna