RegEx replace value after a specific char

Viewed 14

I'm not very used to using regex, but I wanted to know how to replace a content after :

Example:

{
"name": "x",
"name":"y"
}

Result:

{
"name": ,
"name":
}
0 Answers
Related