Сопоставьте объект в строке, используя Regex

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