Faites correspondre un objet dans une chaîne en utilisant Regex

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