I have some objects like this:
"unit":{
"id":"1",
"title":"I am a title",
"description":" description",
"category":{
"name":"Reading",
"type":"READING",
"icon":"fas fa-book"
}
I'd like to remove the double quotes from the keys. Is there a good way to do this in regex? I use: ".*":
to match the key's, but am unsure of how to do the partial replace in VSCode. I tried this solution, but was unsuccessful.