Skip to content
Advertisement

RegEx to find value in JSON

I need to write a RegEx on a JSON to match everything that starts with {$ and ends with }

I tried with /{(.*?)}/g and it seemingly works fine but if you see the image below it also matches the other text so how do I explicitly write a RegEx for my requirement

The reason for the ask is I need to find values with {$*} and replace them with a string

enter image description here

Below is my JSON

JavaScript

Advertisement

Answer

You can use {$w*}

Regex demo

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement